From ce46fa14ac77dfb9bc2abbe35a165b9264620602 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Fri, 20 Jun 2025 05:04:24 +0200 Subject: [PATCH] chore: ignore crossPlaySetting in updateChallengeProgress --- src/controllers/api/updateChallengeProgressController.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/controllers/api/updateChallengeProgressController.ts b/src/controllers/api/updateChallengeProgressController.ts index 5a7e6467..9b7292e6 100644 --- a/src/controllers/api/updateChallengeProgressController.ts +++ b/src/controllers/api/updateChallengeProgressController.ts @@ -44,6 +44,7 @@ export const updateChallengeProgressController: RequestHandler = async (req, res case "ChallengeProgress": case "SeasonChallengeCompletions": case "ChallengePTS": + case "crossPlaySetting": break; default: logger.warn(`unknown challenge progress entry`, { key, value }); @@ -62,4 +63,5 @@ interface IUpdateChallengeProgressRequest { ChallengeProgress?: IChallengeProgress[]; SeasonChallengeHistory?: ISeasonChallenge[]; SeasonChallengeCompletions?: ISeasonChallenge[]; + crossPlaySetting?: string; }