Fix 'skip_size' flagging for local files (#3659)

* Fix 'skip_size' flagging for local files
This commit is contained in:
abraunegg 2026-03-14 09:55:33 +11:00 committed by GitHub
commit eb029bbe2f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5763,6 +5763,7 @@ class SyncEngine {
long thisFileSize = getSize(localFilePath);
if (thisFileSize >= fileSizeLimit) {
if (verboseLogging) {addLogEntry("Skipping file - excluded by skip_size config: " ~ localFilePath ~ " (" ~ to!string(thisFileSize/2^^20) ~ " MB)", ["verbose"]);}
clientSideRuleExcludesPath = true;
}
}
}