From 7b528a7e2091d4f58832ff025005c4f5506111a4 Mon Sep 17 00:00:00 2001 From: Prateek Sunal Date: Wed, 30 Jul 2025 22:15:16 +0530 Subject: [PATCH] fix: rename remoteId --- .../apps/photos/lib/models/collection/smart_album_config.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile/apps/photos/lib/models/collection/smart_album_config.dart b/mobile/apps/photos/lib/models/collection/smart_album_config.dart index 9a66358025..4a2a8d207f 100644 --- a/mobile/apps/photos/lib/models/collection/smart_album_config.dart +++ b/mobile/apps/photos/lib/models/collection/smart_album_config.dart @@ -91,7 +91,7 @@ class SmartAlbumConfig { factory SmartAlbumConfig.fromJson( Map json, - String remoteId, + String id, int updatedAt, ) { final personIDs = Set.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,