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