From 7b8898a1aecf3e92234241e257673a6c758a304c Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Thu, 30 Nov 2023 16:39:43 +0100 Subject: [PATCH] :facepalm: (#1178) --- .../MastodonCore/Service/API/APIService+HomeTimeline.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MastodonSDK/Sources/MastodonCore/Service/API/APIService+HomeTimeline.swift b/MastodonSDK/Sources/MastodonCore/Service/API/APIService+HomeTimeline.swift index 0ba55beb2..f806f856f 100644 --- a/MastodonSDK/Sources/MastodonCore/Service/API/APIService+HomeTimeline.swift +++ b/MastodonSDK/Sources/MastodonCore/Service/API/APIService+HomeTimeline.swift @@ -48,7 +48,7 @@ extension APIService { // it when we need it to display on the home timeline. // We need this (also) for the Account-list, but it might be the wrong place. App Startup might be more appropriate for authentication in AuthenticationServiceProvider.shared.authentications { - _ = try await? accountInfo(domain: authentication.domain, + _ = try? await accountInfo(domain: authentication.domain, userID: authentication.userID, authorization: Mastodon.API.OAuth.Authorization(accessToken: authentication.userAccessToken)).value }