Ignore cancelled error on timeline

This commit is contained in:
Thomas Ricouard 2024-08-14 20:27:26 +02:00
parent dd1a4585e0
commit 48febd628f
1 changed files with 4 additions and 2 deletions

View File

@ -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
}
}