From 0578e5f0c363ea67ef3957472d732d00dc209c24 Mon Sep 17 00:00:00 2001 From: Ondrej Rehacek Date: Wed, 24 Jul 2024 13:30:01 +0200 Subject: [PATCH] Update StashCustomLogin.cs --- Assets/Stash/Scripts/Core/StashCustomLogin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Stash/Scripts/Core/StashCustomLogin.cs b/Assets/Stash/Scripts/Core/StashCustomLogin.cs index 35db36d..a50bb2b 100644 --- a/Assets/Stash/Scripts/Core/StashCustomLogin.cs +++ b/Assets/Stash/Scripts/Core/StashCustomLogin.cs @@ -216,7 +216,7 @@ public static async Task LinkFacebook(string code, string playerId }; // Set the URL for the link account endpoint - string requestUrl = environment.GetRootUrl() + StashConstants.LoginGooglePlayGames; + string requestUrl = environment.GetRootUrl() + StashConstants.LoginFacebook; // Make a POST request to link the access token Response result = await RestClient.Post(requestUrl, JsonUtility.ToJson(requestBody));