Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion shop.html
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ <h3>Unable to fetch items from Ko-Fi and Etsy</h3>

// Check if item has a matching category ID
if (item.ShopCategoryIds && Array.isArray(item.ShopCategoryIds)) {
return item.ShopCategoryIds.some(id => mappedIds.includes(id));
return item.ShopCategoryIds.some(id => mappedIds.includes(Number(id)));
}
return false;
});
Expand Down