From e45d32a4ad2c559af7ab51d0ee4961eb4869d7e3 Mon Sep 17 00:00:00 2001 From: Samuel Walker Date: Wed, 12 Mar 2025 13:01:06 -0600 Subject: [PATCH] wording change --- fclauncher/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fclauncher/auth.go b/fclauncher/auth.go index 6ce486f..885b30b 100644 --- a/fclauncher/auth.go +++ b/fclauncher/auth.go @@ -189,7 +189,7 @@ func TokenRefresh(app App, auth authenticationResp) (authenticationResp, error) "scope": {"XboxLive.SignIn XboxLive.offline_access"}, }) if err != nil { - return authenticationResp{}, fmt.Errorf("unable to request refresh token: %e\n", err) + return authenticationResp{}, fmt.Errorf("unable to refresh token: %e\n", err) } defer resp.Body.Close() data, _ := io.ReadAll(resp.Body)