mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 01:54:42 +01:00
Replace == null with is null
This commit is contained in:
@@ -128,7 +128,7 @@ namespace Emby.Server.Implementations.ScheduledTasks
|
||||
|
||||
lock (_lastExecutionResultSyncLock)
|
||||
{
|
||||
if (_lastExecutionResult == null && !_readFromFile)
|
||||
if (_lastExecutionResult is null && !_readFromFile)
|
||||
{
|
||||
if (File.Exists(path))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user