View Issue Details

IDProjectCategoryView StatusLast Update
0025671Return of ReckoningGeneralpublic2026-08-07 05:07
ReporterWholdar Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status newResolutionopen 
Summary0025671: RoR GraphQL API: War Emblem iconUrl returns “NO ICON SET”
DescriptionHi!

I noticed this while adding War Emblem as a currency option to a small item finder.

The API returns this for War Emblem:

id: 19457
name: War Emblem
type: CURRENCY
iconUrl: https://armory.returnofreckoning.com/item/11154

The icon URL works and returns a 64×64 PNG, but the image itself is the “NO ICON SET” placeholder.

For comparison, War Crest returns a normal currency icon:

id: 208470
name: War Crest
type: CURRENCY
iconUrl: https://armory.returnofreckoning.com/item/8457

Is the War Emblem icon perhaps just missing from the armory image set? No rush, but it would be nice if its iconUrl resolved to the actual emblem icon like War Crest and the other currencies do.
Steps To Reproduce1. POST this query to https://production-api.waremu.com/graphql:

query CurrencyIcons($ids: [ID!]) {
  items(first: 10, where: { id: { in: $ids } }) {
    nodes {
      id
      name
      type
      iconUrl
    }
  }
}

2. Use these variables:

{"ids":["19457","208470"]}

3. Open the two returned iconUrl values.
4. War Emblem shows “NO ICON SET”, while War Crest shows its normal icon.
Additional InformationRechecked against the live API and both icon URLs on 2026-08-07.
TagsNo tags attached.

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2026-08-07 05:07 Wholdar New Issue