From e7fe60f7d0129d72bfbb2648bc3584d8520c2f1c Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Tue, 9 May 2023 16:16:31 +0200 Subject: [PATCH] Fix broken code --- .../Sources/MastodonCore/Service/AuthenticationService.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MastodonSDK/Sources/MastodonCore/Service/AuthenticationService.swift b/MastodonSDK/Sources/MastodonCore/Service/AuthenticationService.swift index d0b16150e..933fd1c6c 100644 --- a/MastodonSDK/Sources/MastodonCore/Service/AuthenticationService.swift +++ b/MastodonSDK/Sources/MastodonCore/Service/AuthenticationService.swift @@ -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 Task { if let authBox = mastodonAuthenticationBoxes.first { - try await fetchFollowedBlockedUserIds(authBox) } + do { try await fetchFollowedBlockedUserIds(authBox) } + catch {} } } }