mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 08:45:23 +03:00
Replace != null with is not null
This commit is contained in:
@@ -55,7 +55,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
public InternalItemsQuery(User? user)
|
||||
: this()
|
||||
{
|
||||
if (user != null)
|
||||
if (user is not null)
|
||||
{
|
||||
SetUser(user);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user