From 60f2f321c836973f402f31d21a72f910e5ea6fe2 Mon Sep 17 00:00:00 2001 From: Tobias Goerke Date: Thu, 27 Jul 2023 08:23:45 +0200 Subject: [PATCH] feat: set DefaultTusChunkSize to 20MB --- settings/tus.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/tus.go b/settings/tus.go index f5eceb44..62df458d 100644 --- a/settings/tus.go +++ b/settings/tus.go @@ -1,6 +1,6 @@ package settings -const DefaultTusChunkSize = 5 * 1024 * 1024 // 20MB +const DefaultTusChunkSize = 20 * 1024 * 1024 // 20MB const DefaultTusRetryCount = 3 // Tus contains the tus.io settings of the app.