mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 09:44:47 +03:00
Replace == null with is null
This commit is contained in:
@@ -56,7 +56,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
{
|
||||
lock (_childIdsLock)
|
||||
{
|
||||
if (_childrenIds == null)
|
||||
if (_childrenIds is null)
|
||||
{
|
||||
var list = base.LoadChildren();
|
||||
_childrenIds = list.Select(i => i.Id).ToList();
|
||||
|
||||
Reference in New Issue
Block a user