1
0
mirror of https://github.com/immich-app/immich.git synced 2025-08-08 23:07:06 +02:00

fix(mobile): map crashes on Android (#10773)

Revert "fix(mobile): upgrade maplibre_gl package to fix issue with crash in ios7.4 above simulator (#10182)"

This reverts commit 99c6fdbc1c.
This commit is contained in:
Alex
2024-07-02 13:43:52 -05:00
committed by GitHub
parent 14d94df1b8
commit f23401d911
8 changed files with 46 additions and 39 deletions

View File

@ -41,7 +41,7 @@ final getAllPlacesProvider =
final curatedContent = assetPlaces
.map(
(data) => SearchCuratedContent(
label: data.exifInfo?.city ?? '',
label: data.exifInfo!.city!,
id: data.id,
),
)