Compare commits

...

2 Commits

Author SHA1 Message Date
Alex
5136f16e6d fix: make sure iOS memory widget render 2026-07-23 13:42:29 -05:00
Adam Gastineau
f488a28018 chore(mobile): force swift-structured-queries lock to 0.34.0 (#30166) 2026-07-23 17:04:01 +00:00
2 changed files with 9 additions and 3 deletions

View File

@@ -140,8 +140,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/swift-structured-queries",
"state" : {
"revision" : "8da8818fccd9959bd683934ddc62cf45bb65b3c8",
"version" : "0.31.1"
"revision" : "dafddd843f10630aa6b5be47c1b6a59cc4ab6586",
"version" : "0.34.0"
}
},
{

View File

@@ -83,7 +83,13 @@ struct ImmichMemoryProvider: TimelineProvider {
return
}
let memories = try await api.fetchMemory(for: Date.now)
let memories: [MemoryResult]
do {
memories = try await api.fetchMemory(for: Date.now)
} catch {
completion(ImageEntry.handleError(for: cacheKey))
return
}
await withTaskGroup(of: ImageEntry?.self) { group in
var totalAssets = 0