mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
Merge pull request #48461 from nextcloud/perf/files/chunked-upload-default-100-mib
This commit is contained in:
commit
ced915a3b1
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ class App {
|
|||
public static function extendJsConfig($settings): void {
|
||||
$appConfig = json_decode($settings['array']['oc_appconfig'], true);
|
||||
|
||||
$maxChunkSize = (int)Server::get(IConfig::class)->getAppValue('files', 'max_chunk_size', (string)(10 * 1024 * 1024));
|
||||
$maxChunkSize = (int)Server::get(IConfig::class)->getAppValue('files', 'max_chunk_size', (string)(100 * 1024 * 1024));
|
||||
$appConfig['files'] = [
|
||||
'max_chunk_size' => $maxChunkSize
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in a new issue