File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Tests/LootLockerTests/PlayMode Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ public class LootLockerSessionResponse : LootLockerResponse
80
80
/// <summary>
81
81
/// The last time this player logged in
82
82
/// </summary>
83
- public DateTime last_seen { get ; set ; }
83
+ public DateTime ? last_seen { get ; set ; }
84
84
/// <summary>
85
85
/// The public UID for this player
86
86
/// </summary>
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ public IEnumerator StartGuestSession_WithStoredIdentifier_Succeeds()
212
212
LootLockerSDKManager . StartGuestSession ( ( startSessionResponse ) =>
213
213
{
214
214
expectedIdentifier = startSessionResponse . player_identifier ;
215
- lastSeenOnFirstSession = startSessionResponse . last_seen ;
215
+ lastSeenOnFirstSession = startSessionResponse . last_seen ?? DateTime . MinValue ;
216
216
217
217
LootLockerSDKManager . EndSession ( ( endSessionResponse ) =>
218
218
{
You can’t perform that action at this time.
0 commit comments