From 807384c143426f6bf405632be02923d8ce0515e1 Mon Sep 17 00:00:00 2001 From: Erik Bylund Date: Fri, 24 Oct 2025 07:55:16 +0200 Subject: [PATCH] fix: Clarify that PSN and Xbox session refreshing does not work --- Runtime/Client/LootLockerHTTPClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Runtime/Client/LootLockerHTTPClient.cs b/Runtime/Client/LootLockerHTTPClient.cs index d00519ab..96a9ff8d 100644 --- a/Runtime/Client/LootLockerHTTPClient.cs +++ b/Runtime/Client/LootLockerHTTPClient.cs @@ -647,8 +647,6 @@ private IEnumerator RefreshSession(string refreshForPlayerUlid, string forExecut }, refreshForPlayerUlid); } break; - case LL_AuthPlatforms.PlayStationNetwork: - case LL_AuthPlatforms.XboxOne: case LL_AuthPlatforms.AmazonLuna: { LootLockerSDKManager.StartAmazonLunaSession(playerData.Identifier, (response) => @@ -658,6 +656,8 @@ private IEnumerator RefreshSession(string refreshForPlayerUlid, string forExecut }, playerData.SessionOptionals); } break; + case LL_AuthPlatforms.PlayStationNetwork: + case LL_AuthPlatforms.XboxOne: case LL_AuthPlatforms.NintendoSwitch: case LL_AuthPlatforms.Steam: {