2
2
mirror of https://github.com/mastodon/mastodon-ios synced 2025-04-11 22:58:02 +02:00

Add explanatory comment

This commit is contained in:
shannon 2024-12-13 13:42:07 -05:00
parent 5ccf30c39e
commit 2a7c8154d0

View File

@ -432,7 +432,7 @@ extension HomeTimelineViewController {
})
.store(in: &disposeBag)
PublisherService.shared.statusPublishResult.prepend(.failure(AppError.badRequest))
PublisherService.shared.statusPublishResult.prepend(.failure(AppError.badRequest)) // prepend failure hides the timelinePill
.receive(on: DispatchQueue.main)
.sink { [weak self] publishResult in
guard let self else { return }