mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-09 15:52:51 +01:00
Replace == null with is null
This commit is contained in:
@@ -436,7 +436,7 @@ namespace Emby.Drawing
|
||||
/// <inheritdoc />
|
||||
public string? GetImageCacheTag(User user)
|
||||
{
|
||||
if (user.ProfileImage == null)
|
||||
if (user.ProfileImage is null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user