fix: only throttle for videos when multipart is not enabled
This commit is contained in:
@@ -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).
|
||||
|
||||
Reference in New Issue
Block a user