Fix 'skip_size' flagging for local files

* Fix 'skip_size' flagging for local files
This commit is contained in:
abraunegg 2026-03-14 09:53:18 +11:00
commit ffaf3fdee2

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;
}
}
}