Skip to content

Commit 736e97a

Browse files
committed
name fix
1 parent 6c5e1e4 commit 736e97a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Runtime/Game/LootLockerSDKManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,12 +332,12 @@ public static void GetSingleKeyPersistentStorage(string key, Action<LootLockerGe
332332
public static void UpdateOrCreateKeyValue(string key, string value, Action<LootLockerGetPersistentStoragResponse> onComplete)
333333
{
334334
if (!CheckInitialized()) return;
335-
LootLockerGetPersistentStoragRequest data = new LootLockerGetPersistentStoragRequest();
335+
LootLockerGetPersistentStorageRequest data = new LootLockerGetPersistentStorageRequest();
336336
data.AddToPayload(new LootLockerPayload { key = key, value = value });
337337
LootLockerAPIManager.UpdateOrCreateKeyValue(data, onComplete);
338338
}
339339

340-
public static void UpdateOrCreateKeyValue(LootLockerGetPersistentStoragRequest data, Action<LootLockerGetPersistentStoragResponse> onComplete)
340+
public static void UpdateOrCreateKeyValue(LootLockerGetPersistentStorageRequest data, Action<LootLockerGetPersistentStoragResponse> onComplete)
341341
{
342342
if (!CheckInitialized()) return;
343343
LootLockerAPIManager.UpdateOrCreateKeyValue(data, onComplete);

Runtime/Game/Requests/PersitentPlayerStorageRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class LootLockerGetPersistentStoragResponse : LootLockerResponse
1414
public virtual LootLockerPayload[] payload { get; set; }
1515
}
1616

17-
public class LootLockerGetPersistentStoragRequest
17+
public class LootLockerGetPersistentStorageRequest
1818
{
1919
public List<LootLockerPayload> payload = new List<LootLockerPayload>();
2020

@@ -83,7 +83,7 @@ public static void GetSingleKeyPersistentStorage(LootLockerGetRequest data, Acti
8383
}, true);
8484
}
8585

86-
public static void UpdateOrCreateKeyValue(LootLockerGetPersistentStoragRequest data, Action<LootLockerGetPersistentStoragResponse> onComplete)
86+
public static void UpdateOrCreateKeyValue(LootLockerGetPersistentStorageRequest data, Action<LootLockerGetPersistentStoragResponse> onComplete)
8787
{
8888
string json = "";
8989
if (data == null) return;

0 commit comments

Comments
 (0)