mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
Changed all == null to is null and all !(* == null) to * is not null
This commit is contained in:
@@ -59,7 +59,7 @@ namespace NadekoBot.Modules.Administration
|
||||
|
||||
var msg = await _service.RemovePlayingAsync(index).ConfigureAwait(false);
|
||||
|
||||
if (msg == null)
|
||||
if (msg is null)
|
||||
return;
|
||||
|
||||
await ReplyConfirmLocalizedAsync("reprm", msg).ConfigureAwait(false);
|
||||
|
Reference in New Issue
Block a user