From ea9e7c46d9c50956097686c5a1d75730c1e8fbdc Mon Sep 17 00:00:00 2001 From: gsd Date: Fri, 24 May 2024 17:38:00 +0300 Subject: [PATCH] external buy service catch fix --- src/main/java/app/controllers/user/ProfileController.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/app/controllers/user/ProfileController.java b/src/main/java/app/controllers/user/ProfileController.java index ea4ffb3..4a89fe3 100644 --- a/src/main/java/app/controllers/user/ProfileController.java +++ b/src/main/java/app/controllers/user/ProfileController.java @@ -132,7 +132,12 @@ public class ProfileController { @RequestParam(value = "steam64", defaultValue = "") String steam64, @RequestParam String buy_type, @RequestParam(required = false, defaultValue = "") String cost) { - VipGiveMethod buy_type_enum = VipGiveMethod.valueOf(buy_type.toUpperCase()); + VipGiveMethod buy_type_enum; + try { + buy_type_enum = VipGiveMethod.valueOf(buy_type.toUpperCase()); + } catch (IllegalArgumentException err) { + return ResponseEntity.status(HttpStatus.CONFLICT).build(); + } if (!vipService.getServices().getOrDefault(buy_type, true)) { return new ResponseEntity("Service " + buy_type_enum.name().toUpperCase() + " is not active long time", HttpStatus.OK);