From 2b76bbe0db502b8410be2f22b11cb36e9f58781a Mon Sep 17 00:00:00 2001 From: Phillip Thelen Date: Mon, 28 Oct 2024 20:07:31 +0100 Subject: [PATCH] =?UTF-8?q?don=E2=80=99t=20filter=20mystery=20sets=20from?= =?UTF-8?q?=20mobile=20content=20(#15348)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 0666cd6d28..ed8a79d782 100644 --- a/website/server/controllers/api-v3/content.js +++ b/website/server/controllers/api-v3/content.js @@ -7,7 +7,7 @@ const IS_PROD = nconf.get('IS_PROD'); const api = {}; const MOBILE_FILTER = ['achievements', 'questSeriesAchievements', 'animalColorAchievements', 'animalSetAchievements', - 'stableAchievements', 'mystery', 'bundles', 'loginIncentives', 'pets', 'premiumPets', 'specialPets', 'questPets', + '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'];