mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 23:13:06 +03:00
Replace != null with is not null
This commit is contained in:
@@ -210,7 +210,7 @@ namespace Jellyfin.Api.Models.PlaybackDtos
|
||||
|
||||
private void DisposeTimer()
|
||||
{
|
||||
if (_timer != null)
|
||||
if (_timer is not null)
|
||||
{
|
||||
_timer.Dispose();
|
||||
_timer = null;
|
||||
|
||||
Reference in New Issue
Block a user