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 :("); }