mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-26 18:54:48 +03:00
Replace == null with is null
This commit is contained in:
@@ -316,7 +316,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
{
|
||||
set
|
||||
{
|
||||
if (value == null)
|
||||
if (value is null)
|
||||
{
|
||||
ParentId = Guid.Empty;
|
||||
ParentType = null;
|
||||
|
||||
Reference in New Issue
Block a user