mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
Changed all == null to is null and all !(* == null) to * is not null
This commit is contained in:
@@ -44,7 +44,7 @@ namespace Ayu.Discord.Gateway
|
||||
var data = bufferWriter.WrittenMemory.ToArray();
|
||||
bufferWriter.Clear();
|
||||
|
||||
if (!(pr is null))
|
||||
if (pr is not null)
|
||||
{
|
||||
await pr.Invoke(data);
|
||||
}
|
||||
|
Reference in New Issue
Block a user