mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 00:35:26 +03:00
Replace != null with is not null
This commit is contained in:
@@ -126,7 +126,7 @@ namespace Emby.Server.Implementations.Library
|
||||
{
|
||||
var userData = _repository.GetUserData(internalUserId, keys);
|
||||
|
||||
if (userData != null)
|
||||
if (userData is not null)
|
||||
{
|
||||
return userData;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user