diff options
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/Functions/Main.cs | 1 | ||||
-rw-r--r-- | win/CS/frmMain.cs | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/win/CS/Functions/Main.cs b/win/CS/Functions/Main.cs index 42b103498..709f43ae9 100644 --- a/win/CS/Functions/Main.cs +++ b/win/CS/Functions/Main.cs @@ -179,7 +179,6 @@ namespace Handbrake.Functions {
// Get the Source Name and remove any invalid characters
string sourceName = Path.GetInvalidFileNameChars().Aggregate(mainWindow.SourceName, (current, character) => current.Replace(character.ToString(), string.Empty));
- sourceName = Path.GetFileNameWithoutExtension(sourceName);
// Remove Underscores
if (UserSettingService.GetUserSetting<bool>(UserSettingConstants.AutoNameRemoveUnderscore))
diff --git a/win/CS/frmMain.cs b/win/CS/frmMain.cs index 475b42019..a142b5d76 100644 --- a/win/CS/frmMain.cs +++ b/win/CS/frmMain.cs @@ -98,7 +98,7 @@ namespace Handbrake if (selectedTitle != null && !string.IsNullOrEmpty(selectedTitle.SourceName))
{
- return Path.GetFileName(selectedTitle.SourceName);
+ return Path.GetFileNameWithoutExtension(selectedTitle.SourceName);
}
// We have a drive, selected as a folder.
|