diff --git a/Runtime/Editor/Editor UI/LootLockerAdminExtension.cs b/Runtime/Editor/Editor UI/LootLockerAdminExtension.cs index 2edf90b6..00525598 100644 --- a/Runtime/Editor/Editor UI/LootLockerAdminExtension.cs +++ b/Runtime/Editor/Editor UI/LootLockerAdminExtension.cs @@ -612,10 +612,10 @@ void OnGameSelected(EventBase e) if (!onComplete.success) { ShowPopup("Error", "Could not find Selected game!"); + EditorApplication.update -= OnEditorUpdate; return; } LootLockerConfig.current.domainKey = onComplete.game.domain_key; - EditorApplication.update -= OnEditorUpdate; }); diff --git a/Runtime/Editor/LootLockerAdminEndPoints.cs b/Runtime/Editor/LootLockerAdminEndPoints.cs index f66a956d..90fcba2e 100644 --- a/Runtime/Editor/LootLockerAdminEndPoints.cs +++ b/Runtime/Editor/LootLockerAdminEndPoints.cs @@ -16,7 +16,7 @@ public class LootLockerAdminEndPoints [Header("User Information")] public static EndPointClass adminExtensionUserInformation = new EndPointClass("v1/user/all", LootLockerHTTPMethod.GET); public static EndPointClass adminExtensionGetUserRole = new EndPointClass("roles/{0}", LootLockerHTTPMethod.GET); - public static EndPointClass adminExtensionGetGameInformation = new EndPointClass("/game/{0}", LootLockerHTTPMethod.GET); + public static EndPointClass adminExtensionGetGameInformation = new EndPointClass("v1/game/{0}", LootLockerHTTPMethod.GET); } } #endif \ No newline at end of file