From dbd1875c09a613e10e706c8e824242c5a9dfacf4 Mon Sep 17 00:00:00 2001 From: Sainan Date: Sun, 23 Mar 2025 02:03:51 +0100 Subject: [PATCH] use inventory projection in updateGeneric --- src/services/inventoryService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/inventoryService.ts b/src/services/inventoryService.ts index 0d17a30d..cf48a47e 100644 --- a/src/services/inventoryService.ts +++ b/src/services/inventoryService.ts @@ -910,7 +910,7 @@ export const updateStandingLimit = ( // TODO: AffiliationMods support (Nightwave). export const updateGeneric = async (data: IGenericUpdate, accountId: string): Promise => { - const inventory = await getInventory(accountId); + const inventory = await getInventory(accountId, "NodeIntrosCompleted MiscItems"); // Make it an array for easier parsing. if (typeof data.NodeIntrosCompleted === "string") {