summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
index 27bd32505..0886768e7 100644
--- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
@@ -1724,8 +1724,8 @@ namespace HandBrakeWPF.ViewModels
this.Destination = saveFileDialog.FileName;
// Disk Space Check
- string drive = Path.GetPathRoot(this.Destination);
- if (drive != null)
+ string drive = Path.GetPathRoot(this.Destination);
+ if (drive != null && !drive.StartsWith(@"\\"))
{
DriveInfo c = new DriveInfo(drive);
if (c.AvailableFreeSpace < this.userSettingService.GetUserSetting<long>(UserSettingConstants.PauseOnLowDiskspaceLevel))