mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 09:14:45 +03:00
Replace != null with is not null
This commit is contained in:
@@ -23,7 +23,7 @@ namespace Emby.Server.Implementations.IO
|
||||
|
||||
await destination.WriteAsync(buffer.AsMemory(0, read), cancellationToken).ConfigureAwait(false);
|
||||
|
||||
if (onStarted != null)
|
||||
if (onStarted is not null)
|
||||
{
|
||||
onStarted();
|
||||
onStarted = null;
|
||||
|
||||
Reference in New Issue
Block a user