From 98a6535dc3c44ac56fd2f60c0b5bb75f45f98fb0 Mon Sep 17 00:00:00 2001 From: Kalista Payne Date: Mon, 16 Jun 2025 16:43:56 -0500 Subject: [PATCH] fix(content): don't filter out the thing we want --- website/server/controllers/api-v3/content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/server/controllers/api-v3/content.js b/website/server/controllers/api-v3/content.js index b2f8b959b1..ed8a79d782 100644 --- a/website/server/controllers/api-v3/content.js +++ b/website/server/controllers/api-v3/content.js @@ -10,7 +10,7 @@ const MOBILE_FILTER = ['achievements', 'questSeriesAchievements', 'animalColorAc 'stableAchievements', 'bundles', 'loginIncentives', 'pets', 'premiumPets', 'specialPets', 'questPets', 'wackyPets', 'mounts', 'premiumMounts,specialMounts,questMounts', 'events', 'dropEggs', 'questEggs', 'dropHatchingPotions', 'premiumHatchingPotions', 'wackyHatchingPotions', 'backgroundsFlat', 'questsByLevel', 'gear.tree', 'tasksByCategory', - 'userDefaults', 'timeTravelStable', 'gearTypes', 'cardTypes', 'categoryOptions']; + 'userDefaults', 'timeTravelStable', 'gearTypes', 'cardTypes']; const ANDROID_FILTER = [...MOBILE_FILTER, 'appearances.background'].join(','); const IOS_FILTER = [...MOBILE_FILTER, 'backgrounds'].join(',');