mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 19:23:38 +01:00
Replace == null with is null
This commit is contained in:
@@ -59,7 +59,7 @@ namespace MediaBrowser.Controller.Providers
|
||||
/// </summary>
|
||||
public void ResetPeople()
|
||||
{
|
||||
if (People == null)
|
||||
if (People is null)
|
||||
{
|
||||
People = new List<PersonInfo>();
|
||||
}
|
||||
@@ -83,7 +83,7 @@ namespace MediaBrowser.Controller.Providers
|
||||
}
|
||||
}
|
||||
|
||||
if (userData == null)
|
||||
if (userData is null)
|
||||
{
|
||||
userData = new UserItemData()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user