Add line break after redirect error

This commit is contained in:
Pierre Rudloff 2015-11-22 19:31:38 +01:00
parent 8d3564722e
commit 2289de7418
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ class FrontController
$app->redirect($video['url']);
} catch (\Exception $e) {
$app->response->headers->set('Content-Type', 'text/plain');
echo $e->getMessage();
echo $e->getMessage().PHP_EOL;
}
}
}