diff --git a/TwitchDownloaderWPF/WindowUrlList.xaml.cs b/TwitchDownloaderWPF/WindowUrlList.xaml.cs index 767eb1b1..7c237050 100644 --- a/TwitchDownloaderWPF/WindowUrlList.xaml.cs +++ b/TwitchDownloaderWPF/WindowUrlList.xaml.cs @@ -49,6 +49,7 @@ private async void btnQueue_Click(object sender, RoutedEventArgs e) if (invalidList.Count > 0) { MessageBox.Show(Translations.Strings.UnableToParseInputsMessage + Environment.NewLine + string.Join(Environment.NewLine, invalidList.ToArray()), Translations.Strings.UnableToParseInputs, MessageBoxButton.OK, MessageBoxImage.Error); + btnQueue.IsEnabled = true; return; } @@ -151,6 +152,7 @@ private async void btnQueue_Click(object sender, RoutedEventArgs e) if (errorList.Count > 0) { MessageBox.Show(Translations.Strings.UnableToGetInfoMessage + Environment.NewLine + string.Join(Environment.NewLine, errorList.ToArray()), Translations.Strings.UnableToGetInfo, MessageBoxButton.OK, MessageBoxImage.Error); + btnQueue.IsEnabled = true; return; }