From adbf6be0af0fa3004730ec84e61fe2f0b3e0bb96 Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Sun, 10 Apr 2016 19:42:52 +0200 Subject: [PATCH] Revert "Use smaller chunks (see https://github.com/slimphp/Slim/issues/1836)" This reverts commit fca0ab6b49fd4c93be060432675f1dcfee30ac1d. --- index.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/index.php b/index.php index c42a687..a934ac8 100644 --- a/index.php +++ b/index.php @@ -16,13 +16,7 @@ require_once __DIR__.'/vendor/autoload.php'; use Alltube\VideoDownload; use Alltube\Controller\FrontController; -$app = new \Slim\App( - array( - 'settings'=>array( - 'responseChunkSize'=>1024 - ) - ) -); +$app = new \Slim\App(); $container = $app->getContainer(); $container['view'] = function ($c) { $view = new \Slim\Views\Smarty(__DIR__.'/templates/');