mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-03 04:29:40 +00:00
check officialPinnedItems for gala gear in market (#10745)
This commit is contained in:
parent
2304d970a5
commit
f161987e1e
1 changed files with 1 additions and 1 deletions
|
|
@ -338,7 +338,7 @@ module.exports = function getItemInfo (user, type, item, officialPinnedItems, la
|
|||
|
||||
if (itemInfo) {
|
||||
itemInfo.isSuggested = isItemSuggested(officialPinnedItems, itemInfo);
|
||||
itemInfo.pinned = isPinned(user, itemInfo);
|
||||
itemInfo.pinned = isPinned(user, itemInfo, officialPinnedItems);
|
||||
} else {
|
||||
throw new BadRequest(i18n.t('wrongItemType', {type}, language));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue