summaryrefslogtreecommitdiffstats
path: root/win/C#/HandBrake.ApplicationServices/Services/Queue.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Services/Queue.cs')
-rw-r--r--win/C#/HandBrake.ApplicationServices/Services/Queue.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Services/Queue.cs b/win/C#/HandBrake.ApplicationServices/Services/Queue.cs
index fc9d7afc1..937e37a78 100644
--- a/win/C#/HandBrake.ApplicationServices/Services/Queue.cs
+++ b/win/C#/HandBrake.ApplicationServices/Services/Queue.cs
@@ -287,7 +287,7 @@ namespace HandBrake.ApplicationServices.Services
}
catch (Exception exc)
{
- errorService.ShowError("Unable to write to the file. Please make sure that the location has the correct permissions for file writing.", exc.ToString());
+ throw new Exception("Unable to write to the file. Please make sure that the location has the correct permissions for file writing.", exc);
}
}
return false;
@@ -364,7 +364,7 @@ namespace HandBrake.ApplicationServices.Services
}
catch (Exception exc)
{
- errorService.ShowError("Unable to Start Queue", exc.ToString());
+ throw new Exception("Unable to Start Queue", exc);
}
}
}
@@ -393,7 +393,7 @@ namespace HandBrake.ApplicationServices.Services
QueueTask encJob = this.GetNextJob();
this.SaveQueue(); // Update the queue recovery file
- Run(encJob, true);
+ Start(encJob, true);
if (HbProcess == null)
{