Skip to content

Commit 98a633a

Browse files
committed
Fix bug with missing parameter in GetSingleKeyPersistentStorage request
1 parent a7766ef commit 98a633a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Runtime/Game/Requests/PersitentPlayerStorageRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public static void GetSingleKeyPersistentStorage(LootLockerGetRequest data, Acti
6969

7070
string getVariable = string.Format(endPoint.endPoint, data.getRequests[0]);
7171

72-
LootLockerServerRequest.CallAPI(endPoint.endPoint, endPoint.httpMethod, null, onComplete: (serverResponse) =>
72+
LootLockerServerRequest.CallAPI(getVariable, endPoint.httpMethod, null, onComplete: (serverResponse) =>
7373
{
7474
LootLockerGetPersistentSingle response = new LootLockerGetPersistentSingle();
7575
if (string.IsNullOrEmpty(serverResponse.Error))

0 commit comments

Comments
 (0)