Skip to content

Commit c0265ad

Browse files
Fix a mapping bug when LootLockerLevel_Thresholds next property is returned as null from the server
1 parent 17dcf11 commit c0265ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Runtime/Game/Requests/LootLockerSessionRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Newtonsoft.Json;
1+
using Newtonsoft.Json;
22
using System;
33
using System.Collections;
44
using System.Collections.Generic;
@@ -95,7 +95,7 @@ public class LootLockerLevel_Thresholds
9595
{
9696
public int current { get; set; }
9797
public bool current_is_prestige { get; set; }
98-
public int next { get; set; }
98+
public int? next { get; set; }
9999
public bool next_is_prestige { get; set; }
100100
}
101101

0 commit comments

Comments
 (0)