fix: only throttle for videos when multipart is not enabled

This commit is contained in:
Prateek Sunal
2025-06-11 16:45:45 +05:30
parent cae140b239
commit f35e2fb49c

View File

@@ -940,7 +940,8 @@ class RemoteSyncService {
}
bool _shouldThrottleSync() {
return Platform.isIOS && !AppLifecycleService.instance.isForeground;
return !flagService.enableMobMultiPart ||
!localSettings.userEnabledMultiplePart;
}
// _sortByTime sort by creation time (desc).