mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-13 18:58:27 -04:00
Changed all == null to is null and all !(* == null) to * is not null
This commit is contained in:
@@ -65,7 +65,7 @@ namespace NadekoBot.Modules.Utility.Services
|
||||
{
|
||||
await Task.Yield();
|
||||
|
||||
if (guild == null || string.IsNullOrWhiteSpace(input))
|
||||
if (guild is null || string.IsNullOrWhiteSpace(input))
|
||||
return input;
|
||||
|
||||
if (guild != null)
|
||||
|
Reference in New Issue
Block a user