mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 23:58:57 +00:00
Replace == null with is null
This commit is contained in:
@@ -89,7 +89,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
}
|
||||
|
||||
var v = sourceProp.GetValue(source);
|
||||
if (v == null)
|
||||
if (v is null)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user