Merge pull request #9 from radiorabe/feature/missing-arg

Add missing argument to playlistNotFound call
This commit is contained in:
Lucas Bickel 2017-03-04 15:48:22 +01:00 committed by GitHub
commit 96eb746f18
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ class PlaylistController extends Zend_Controller_Action
$obj = new $objInfo['className']($id);
$this->createFullResponse($obj);
} catch (PlaylistNotFoundException $e) {
$this->playlistNotFound();
$this->playlistNotFound($type);
} catch (Exception $e) {
$this->playlistUnknownError($e);
}