From 12d9b4d8ae55f94eda8bccc6edc07dca1c69a7ad Mon Sep 17 00:00:00 2001 From: sr55 Date: Sun, 1 Apr 2012 16:49:21 +0000 Subject: WinGui: Fix an filepath issue in libhb scan service. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4577 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/CS/HandBrake.ApplicationServices/Services/LibScan.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'win') diff --git a/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs b/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs index 2a5726ef0..70a44ca56 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs @@ -195,9 +195,9 @@ namespace HandBrake.ApplicationServices.Services this.ScanStared(this, new EventArgs()); if (title != 0) - instance.StartScan(source, previewCount, title); + instance.StartScan(sourcePath.ToString(), previewCount, title); else - instance.StartScan(source, previewCount); + instance.StartScan(sourcePath.ToString(), previewCount); } catch (Exception exc) { -- cgit v1.2.3