fix(mobile): device album sync (#13116)
parent
6c7d51da34
commit
f463bd18ef
|
|
@ -507,7 +507,7 @@ class SyncService {
|
|||
List<Album> onDevice, [
|
||||
Set<String>? excludedAssets,
|
||||
]) async {
|
||||
onDevice.sort((a, b) => a.id.compareTo(b.id));
|
||||
onDevice.sort((a, b) => a.localId!.compareTo(b.localId!));
|
||||
final inDb =
|
||||
await _albumRepository.getAll(remote: false, sortBy: AlbumSort.localId);
|
||||
final List<Asset> deleteCandidates = [];
|
||||
|
|
|
|||
Loading…
Reference in New Issue