Skip to content

Commit baf6cbc

Browse files
mosandltnilsding
authored andcommitted
fix(libsync): rename OWNCLOUD_BULK_UPLOAD to NEXTCLOUD_BULK_UPLOAD
Per review feedback from @mgallien on PR #10300 - new env vars should use the NEXTCLOUD_ prefix, not the legacy OWNCLOUD_ one (kept only for the pre-existing OWNCLOUD_CHUNKING_NG override). Signed-off-by: mosandlt <10558666+mosandlt@users.noreply.github.com> Assisted-by: ClaudeCode:claude-sonnet-5
1 parent 34c14be commit baf6cbc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/libsync/capabilities.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ int Capabilities::maxConcurrentChunkUploads() const
232232

233233
bool Capabilities::bulkUpload() const
234234
{
235-
static const auto bulkUploadEnv = qgetenv("OWNCLOUD_BULK_UPLOAD");
235+
static const auto bulkUploadEnv = qgetenv("NEXTCLOUD_BULK_UPLOAD");
236236
if (bulkUploadEnv == "0")
237237
return false;
238238
if (bulkUploadEnv == "1")

0 commit comments

Comments
 (0)