mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 23:58:57 +00:00
Replace != null with is not null
This commit is contained in:
@@ -357,7 +357,7 @@ namespace MediaBrowser.Controller.Session
|
||||
{
|
||||
lock (_progressLock)
|
||||
{
|
||||
if (_progressTimer != null)
|
||||
if (_progressTimer is not null)
|
||||
{
|
||||
_progressTimer.Dispose();
|
||||
_progressTimer = null;
|
||||
|
||||
Reference in New Issue
Block a user