Skip to content

Commit f899037

Browse files
Mikkel Sørensenkirre-bylund
authored andcommitted
Added missing type for PolliOrderStatus
1 parent 1392345 commit f899037

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Runtime/Game/LootLockerSDKManager.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4228,12 +4228,12 @@ public static void AndroidPurchaseVerification(string purchase_token, int asset_
42284228
/// failed - The order failed
42294229
/// </summary>
42304230
/// <param name="assetId">The ID of the asset to check the status for</param>
4231-
/// <param name="onComplete">onComplete Action for handling the response of type LootLockerCharacterLoadoutResponse</param>
4232-
public static void PollOrderStatus(int assetId, Action<LootLockerCharacterLoadoutResponse> onComplete)
4231+
/// <param name="onComplete">onComplete Action for handling the response of type LootLockerPurchaseOrderStatus</param>
4232+
public static void PollOrderStatus(int assetId, Action<LootLockerPurchaseOrderStatus> onComplete)
42334233
{
42344234
if (!CheckInitialized())
42354235
{
4236-
onComplete?.Invoke(LootLockerResponseFactory.SDKNotInitializedError<LootLockerCharacterLoadoutResponse>());
4236+
onComplete?.Invoke(LootLockerResponseFactory.SDKNotInitializedError<LootLockerPurchaseOrderStatus>());
42374237
return;
42384238
}
42394239
LootLockerGetRequest data = new LootLockerGetRequest();

0 commit comments

Comments
 (0)