mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-15 18:53:27 +01:00
Replace != null with is not null
This commit is contained in:
@@ -115,7 +115,7 @@ namespace Emby.Server.Implementations.IO
|
||||
|
||||
var options = _libraryManager.GetLibraryOptions(item);
|
||||
|
||||
if (options != null)
|
||||
if (options is not null)
|
||||
{
|
||||
return options.EnableRealtimeMonitor;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user