1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-12 11:15:43 +02:00

Merge branch 'master' of git://github.com/kayone/NzbDrone

This commit is contained in:
Mark McDowall 2011-09-03 20:05:56 -07:00
commit 421ba466a8

View File

@ -11,6 +11,7 @@
using NzbDrone.Core.Model.Notification;
using NzbDrone.Core.Repository;
using PetaPoco;
using ThreadState = System.Threading.ThreadState;
namespace NzbDrone.Core.Providers.Jobs
{
@ -161,7 +162,7 @@ public virtual void QueueJob(Type jobType, int targetId = 0, int secondaryTarget
_isRunning = true;
}
if (_jobThread == null || !_jobThread.IsAlive)
if (_jobThread == null || _jobThread.ThreadState != ThreadState.Running)
{
Logger.Trace("Initializing queue processor thread");
@ -178,6 +179,8 @@ public virtual void QueueJob(Type jobType, int targetId = 0, int secondaryTarget
finally
{
_isRunning = false;
_jobThread.Abort();
}
};