mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
check timer for null before attempting to dispose
This commit is contained in:
parent
c5dc02ec43
commit
c16fac0500
@ -391,8 +391,11 @@ namespace MediaBrowser.Server.Implementations.IO
|
||||
|
||||
Logger.Info("Timer stopped.");
|
||||
|
||||
_updateTimer.Dispose();
|
||||
_updateTimer = null;
|
||||
if (_updateTimer != null)
|
||||
{
|
||||
_updateTimer.Dispose();
|
||||
_updateTimer = null;
|
||||
}
|
||||
}
|
||||
|
||||
var paths = _affectedPaths.Keys.ToList();
|
||||
|
Loading…
Reference in New Issue
Block a user