From ec28206d8a584d20693b4aee73ef515d6f7eb261 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 26 May 2026 11:02:40 +0100 Subject: [PATCH] drime: remove duplicate upload_cutoff config option The upload_cutoff option was registered twice with identical content. Remove the second copy. --- backend/drime/drime.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/backend/drime/drime.go b/backend/drime/drime.go index ba71c5fa4..ee5e55ca3 100644 --- a/backend/drime/drime.go +++ b/backend/drime/drime.go @@ -146,14 +146,6 @@ and these uploads do not fully utilize your bandwidth, then increasing this may help to speed up the transfers.`, Default: 4, Advanced: true, - }, { - Name: "upload_cutoff", - Help: `Cutoff for switching to chunked upload. - -Any files larger than this will be uploaded in chunks of chunk_size. -The minimum is 0 and the maximum is 5 GiB.`, - Default: defaultUploadCutoff, - Advanced: true, }, { Name: config.ConfigEncoding, Help: config.ConfigEncodingHelp,