diff --git a/DysonNetwork.Sphere/Sticker/StickerController.cs b/DysonNetwork.Sphere/Sticker/StickerController.cs index 14bbd71..0ba15da 100644 --- a/DysonNetwork.Sphere/Sticker/StickerController.cs +++ b/DysonNetwork.Sphere/Sticker/StickerController.cs @@ -31,7 +31,7 @@ public class StickerController( return NotFound("Sticker pack not found"); var accountId = Guid.Parse(currentUser.Id); - if (!await ps.IsMemberWithRole(accountId, pack.PublisherId, requiredRole)) + if (!await ps.IsMemberWithRole(pack.PublisherId, accountId, requiredRole)) return StatusCode(403, "You are not a member of this publisher"); return Ok();