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

Clear unused variable warning

This commit is contained in:
shannon 2025-02-13 08:29:24 -05:00
parent c0f1e60c71
commit 24c17878b8

View File

@ -261,7 +261,7 @@ public extension AuthenticationServiceProvider {
lastFetchOfAllAccounts = Date.now
for authentication in authentications {
guard let account = try? await APIService.shared.accountInfo(MastodonAuthenticationBox(authentication: authentication)) else { continue }
guard let _ = try? await APIService.shared.accountInfo(MastodonAuthenticationBox(authentication: authentication)) else { continue }
}
NotificationCenter.default.post(name: .userFetched, object: nil)