From 1fab42e321854ae976cb019a62799ffb1c96b975 Mon Sep 17 00:00:00 2001 From: JohannesLoot <97440747+JohannesLoot@users.noreply.github.com> Date: Thu, 23 Oct 2025 16:06:50 +0200 Subject: [PATCH] Fix placeholder format in listCatalogItemsByKey endpoint --- Runtime/Client/LootLockerEndPoints.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/Client/LootLockerEndPoints.cs b/Runtime/Client/LootLockerEndPoints.cs index 1dcea118..08b23bd1 100644 --- a/Runtime/Client/LootLockerEndPoints.cs +++ b/Runtime/Client/LootLockerEndPoints.cs @@ -274,7 +274,7 @@ public class LootLockerEndPoints [Header("Catalogs")] public static EndPointClass listCatalogs = new EndPointClass("catalogs", LootLockerHTTPMethod.GET); public static EndPointClass deprecatedListCatalogItemsByKey = new EndPointClass("catalog/key/{0}/prices", LootLockerHTTPMethod.GET); - public static EndPointClass listCatalogItemsByKey = new EndPointClass("catalogs/inspired-ibex/v1/catalog/key/{key}/list", LootLockerHTTPMethod.GET); + public static EndPointClass listCatalogItemsByKey = new EndPointClass("catalogs/inspired-ibex/v1/catalog/key/{0}/list", LootLockerHTTPMethod.GET); // Misc [Header("Misc")]