diff options
author | sr55 <[email protected]> | 2012-04-01 16:49:21 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-04-01 16:49:21 +0000 |
commit | 12d9b4d8ae55f94eda8bccc6edc07dca1c69a7ad (patch) | |
tree | 32ba4600f6c58b87d7ac676d0ebc3903441cf8f8 /win | |
parent | a92f8b6d0ba8c19c88200118b76c7519e04d7f92 (diff) |
WinGui: Fix an filepath issue in libhb scan service.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4577 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/LibScan.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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)
{
|