mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 12:58:28 +01:00
Replace == null with is null
This commit is contained in:
@@ -48,7 +48,7 @@ namespace MediaBrowser.MediaEncoding.BdInfo
|
||||
MediaStreams = Array.Empty<MediaStream>()
|
||||
};
|
||||
|
||||
if (playlist == null)
|
||||
if (playlist is null)
|
||||
{
|
||||
return outputStream;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user