From 9600d614548e8b734c61e99f003920ba524af068 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Thu, 13 Feb 2014 20:48:50 +0100 Subject: [PATCH] Modified max-chunks-per-second default value --- src/API/ServerAPI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/API/ServerAPI.php b/src/API/ServerAPI.php index 996d9f05e..53f6ed6a7 100644 --- a/src/API/ServerAPI.php +++ b/src/API/ServerAPI.php @@ -147,7 +147,7 @@ class ServerAPI{ //Load advanced properties define("DEBUG", $this->getProperty("debug", 1)); define("ADVANCED_CACHE", $this->getProperty("enable-advanced-cache", false)); - define("MAX_CHUNK_RATE", 20 / $this->getProperty("max-chunks-per-second", 6)); //Default rate ~384 kB/s + define("MAX_CHUNK_RATE", 20 / $this->getProperty("max-chunks-per-second", 7)); //Default rate ~448 kB/s if(ADVANCED_CACHE == true){ console("[INFO] Advanced cache enabled"); }