Fix broken code

This commit is contained in:
Marcus Kida 2023-05-09 16:16:31 +02:00
parent 141d3561dd
commit e7fe60f7d0
No known key found for this signature in database
GPG Key ID: 19FF64E08013CA40
1 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,8 @@ public final class AuthenticationService: NSObject {
/// Also we'll only be updating the current active user as the state will be reflesh upon user-change anyways /// Also we'll only be updating the current active user as the state will be reflesh upon user-change anyways
Task { Task {
if let authBox = mastodonAuthenticationBoxes.first { if let authBox = mastodonAuthenticationBoxes.first {
try await fetchFollowedBlockedUserIds(authBox) } do { try await fetchFollowedBlockedUserIds(authBox) }
catch {}
} }
} }
} }