From 4a340488414b651dc6f65ea917ccc1de1ce31f2c Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Wed, 22 May 2024 07:00:26 +0200 Subject: [PATCH] fix: /subscriptions --- MyMcRealms/Controllers/SubscriptionsController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MyMcRealms/Controllers/SubscriptionsController.cs b/MyMcRealms/Controllers/SubscriptionsController.cs index 96cde63..782bc58 100644 --- a/MyMcRealms/Controllers/SubscriptionsController.cs +++ b/MyMcRealms/Controllers/SubscriptionsController.cs @@ -8,9 +8,9 @@ namespace Minecraft_Realms_Emulator.Controllers [RequireMinecraftCookie] public class SubscriptionsController : ControllerBase { - [HttpGet("{id}")] + [HttpGet("{wId}")] [CheckRealmOwner] - public ActionResult GetSubscription(int id) + public ActionResult GetSubscription(int wId) { return BadRequest("No subscription for you :("); }