mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-14 03:30:25 +01:00
Replace != null with is not null
This commit is contained in:
@@ -173,7 +173,7 @@ namespace Emby.Dlna.Service
|
||||
}
|
||||
}
|
||||
|
||||
if (localName != null && namespaceURI != null)
|
||||
if (localName is not null && namespaceURI is not null)
|
||||
{
|
||||
return new ControlRequestInfo(localName, namespaceURI);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user