Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
th0mk committed Oct 31, 2024
1 parent de291ac commit 66f9ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FMBot.Bot/TextCommands/LastFM/PlayCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public async Task RecapAsync([Remainder] string extraOptions = null)

var contextUser = await this._userService.GetUserSettingsAsync(this.Context.User);

if (contextUser.UserType != UserType.Admin || contextUser.UserType != UserType.Owner)
if (contextUser.UserType != UserType.Admin && contextUser.UserType != UserType.Owner)
{
return;
}
Expand Down

0 comments on commit 66f9ffc

Please sign in to comment.