mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 23:13:06 +03:00
Replace != null with is not null
This commit is contained in:
@@ -71,7 +71,7 @@ namespace MediaBrowser.LocalMetadata.Parsers
|
||||
{
|
||||
var child = GetLinkedChild(subReader);
|
||||
|
||||
if (child != null)
|
||||
if (child is not null)
|
||||
{
|
||||
list.Add(child);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user