mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-06 06:12:52 +01:00
Replace == null with is null
This commit is contained in:
@@ -453,7 +453,7 @@ namespace MediaBrowser.LocalMetadata.Images
|
||||
{
|
||||
var image = GetImage(files, name, prefix);
|
||||
|
||||
if (image == null)
|
||||
if (image is null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user