mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-25 01:31:04 +00:00
Ignore cancelled error on timeline
This commit is contained in:
parent
dd1a4585e0
commit
48febd628f
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