fix: transform inventoryResponse.GuildId for older versions #2852

Merged
Sainan merged 1 commits from guildid-fix into main 2025-10-06 22:54:22 -07:00

View File

@ -461,6 +461,9 @@ export const getInventoryResponse = async (
toLegacyOid(id);
}
}
if (inventoryResponse.GuildId) {
toLegacyOid(inventoryResponse.GuildId);
}
}
}
}