Increment number of errors by one (#898)

This commit is contained in:
Nathan Mattes 2023-07-20 11:49:47 +02:00
parent 9699e93169
commit 49c273e056
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ final class HomeTimelineNavigationBarTitleViewModel {
.receive(on: DispatchQueue.main)
.sink { [weak self] _ in
guard let self = self else { return }
self.networkErrorCount.value += self.networkErrorCount.value + 1
self.networkErrorCount.value = self.networkErrorCount.value + 1
}
.store(in: &disposeBag)