removed some unnecessary print()

This commit is contained in:
Toni Förster 2024-04-01 14:00:02 +02:00
parent 807c0a1e2e
commit ae16680fc2
No known key found for this signature in database
GPG Key ID: 292F3E5086C83FC7

View File

@ -47,23 +47,16 @@ final class CommentsModel: ObservableObject {
self.all += commentsPage.comments self.all += commentsPage.comments
self.nextPage = commentsPage.nextPage self.nextPage = commentsPage.nextPage
self.disabled = commentsPage.disabled self.disabled = commentsPage.disabled
} else {
print("Failed to parse response: \(response)")
} }
} }
.onFailure { [weak self] error in .onFailure { [weak self] _ in
self?.handleFailure(error: error) self?.disabled = true
} }
.onCompletion { [weak self] _ in .onCompletion { [weak self] _ in
self?.loaded = true self?.loaded = true
} }
} }
func handleFailure(error: Error) {
disabled = true
print("Encountered an error: \(error)")
}
func loadNextPageIfNeeded(current comment: Comment) { func loadNextPageIfNeeded(current comment: Comment) {
let thresholdIndex = all.index(all.endIndex, offsetBy: -5) let thresholdIndex = all.index(all.endIndex, offsetBy: -5)
if all.firstIndex(where: { $0 == comment }) == thresholdIndex { if all.firstIndex(where: { $0 == comment }) == thresholdIndex {