From ace167fe10e12244609d46ac34b61075c6fd5dca Mon Sep 17 00:00:00 2001 From: jo Date: Thu, 27 Jan 2022 11:41:29 +0100 Subject: [PATCH] fix(legacy): do not catch too broad exceptions --- legacy/application/controllers/PlaylistController.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/legacy/application/controllers/PlaylistController.php b/legacy/application/controllers/PlaylistController.php index 294992e83..4775e5ffc 100644 --- a/legacy/application/controllers/PlaylistController.php +++ b/legacy/application/controllers/PlaylistController.php @@ -230,8 +230,6 @@ class PlaylistController extends Zend_Controller_Action $this->createFullResponse($obj); } catch (PlaylistNotFoundException $e) { $this->playlistNotFound($type); - } catch (Exception $e) { - $this->playlistUnknownError($e); } }