mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
feat(mobile): add three-state field serialization (#27231)
* bump to v7.22.0 and update patching * gen client * migrate mobile call sites
This commit is contained in:
parent
1bb7517da0
commit
96d521e149
161 changed files with 3531 additions and 3369 deletions
|
|
@ -29,7 +29,7 @@ final getAllPlacesProvider = FutureProvider.autoDispose<List<SearchCuratedConten
|
|||
}
|
||||
|
||||
final curatedContent = assetPlaces
|
||||
.map((data) => SearchCuratedContent(label: data.exifInfo!.city!, id: data.id))
|
||||
.map((data) => SearchCuratedContent(label: data.exifInfo.orElse(null)!.city.orElse(null)!, id: data.id))
|
||||
.toList();
|
||||
|
||||
return curatedContent;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue