mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-15 18:53:27 +01:00
Replace == null with is null
This commit is contained in:
@@ -134,7 +134,7 @@ namespace MediaBrowser.Model.Dto
|
||||
|
||||
public void InferTotalBitrate(bool force = false)
|
||||
{
|
||||
if (MediaStreams == null)
|
||||
if (MediaStreams is null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user