Can't claim Pluto to Eris Junction DragonKeyRewardBundle #2332
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When trying to get reward for Orokin vault, I have parsing error:
2025-06-27T12:13:39:049 [0.1.0] debug: handling acquision of /Lotus/Types/Restoratives/Upgraded/DragonKeyRewardBundle 2025-06-27T12:13:39:049 [0.1.0] error: Error: keyword StoreItems/ not found in string /Lotus/Types/Restoratives/Upgraded/DragonKeyRewardBundle while processing /api/claimJunctionChallengeReward.php request at getSubstringFromKeyword (M:\WarframePrivateServer\SpaceNinjaServer\src\helpers\stringHelpers.ts:11:15) at getStoreItemCategory (M:\WarframePrivateServer\SpaceNinjaServer\src\services\purchaseService.ts:40:52) at handleStoreItemAcquisition (M:\WarframePrivateServer\SpaceNinjaServer\src\services\purchaseService.ts:372:51) at claimJunctionChallengeRewardController (M:\WarframePrivateServer\SpaceNinjaServer\src\controllers\api\claimJunctionChallengeRewardController.ts:24:46) at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
Apparently, this function assume that storeItem always contains "StoreItems/" string and it's not always the case:
export const getStoreItemCategory = (storeItem: string): string => { const storeItemString = getSubstringFromKeyword(storeItem, "StoreItems/"); const storeItemElements = storeItemString.split("/"); return storeItemElements[1]; };