diff options
author | sr55 <[email protected]> | 2016-04-23 17:33:38 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2016-04-23 17:33:38 +0100 |
commit | 59853dd5e1f2b504167340fa11c79febe18b8f34 (patch) | |
tree | 598875905e7065207bebefde6860bd76c9b101c4 /win/CS/HandBrakeWPF/Services/Queue | |
parent | 4d23e1dff4bb63575e586a8da8793891fa67bad4 (diff) |
WinGui: If you invoke HandBrake.exe with "--auto-start-queue" it will automatically start the queue and not prompt to recover the queue.
Behaviour Change: When reloading the queue, any job that is "In progress" will be marked as "Error" now. We don't know if HandBrake crashed or the system restarted. This avoids any crash -> restart loops that may occur. This allows HandBrake to get on with the rest of the queue until the user can action the failed encode.
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Queue')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Queue/QueueProcessor.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Queue/QueueProcessor.cs b/win/CS/HandBrakeWPF/Services/Queue/QueueProcessor.cs index 46df938ce..854352c41 100644 --- a/win/CS/HandBrakeWPF/Services/Queue/QueueProcessor.cs +++ b/win/CS/HandBrakeWPF/Services/Queue/QueueProcessor.cs @@ -454,7 +454,7 @@ namespace HandBrakeWPF.Services.Queue // Reset InProgress/Error to Waiting so it can be processed
if (item.Status == QueueItemStatus.InProgress)
{
- item.Status = QueueItemStatus.Waiting;
+ item.Status = QueueItemStatus.Error;
}
this.queue.Add(item);
|