fix: rename remoteId

This commit is contained in:
Prateek Sunal
2025-07-30 22:15:16 +05:30
parent 655336a92c
commit 7b528a7e20

View File

@@ -91,7 +91,7 @@ class SmartAlbumConfig {
factory SmartAlbumConfig.fromJson(
Map<String, dynamic> json,
String remoteId,
String id,
int updatedAt,
) {
final personIDs = Set<String>.from(json["person_ids"] as List? ?? []);
@@ -107,7 +107,7 @@ class SmartAlbumConfig {
);
return SmartAlbumConfig(
id: remoteId,
id: id,
collectionId: json["collection_id"] as int,
personIDs: personIDs,
infoMap: infoMap,