mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-03-30 13:29:34 +00:00
Merge branch 'main' into iOS-18
This commit is contained in:
commit
cd8d360023
1 changed files with 4 additions and 2 deletions
|
@ -214,8 +214,10 @@ extension TimelineViewModel: StatusesFetcher {
|
|||
pendingStatusesObserver.isLoadingNewStatuses = !pullToRefresh
|
||||
try await fetchNewPagesFrom(latestStatus: latest.id, client: client)
|
||||
}
|
||||
} catch {
|
||||
statusesState = .error(error: error)
|
||||
} catch let error {
|
||||
if (error as NSError).code != -999 {
|
||||
statusesState = .error(error: error)
|
||||
}
|
||||
canStreamEvents = true
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue