Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry08 committed Jun 14, 2024
1 parent e1ea1c2 commit 182fa7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ await tagInjector.InjectTagsAsync(
download.Status =
ex is OperationCanceledException ? DownloadStatus.Canceled : DownloadStatus.Failed;

// Short error message for YouTube-related errors, full for others
// Short error message for SoundCloud-related errors, full for others
download.ErrorMessage = ex is SoundcloudExplodeException ? ex.Message : ex.ToString();
}
finally
Expand Down Expand Up @@ -218,7 +218,7 @@ await _dialogManager.ShowDialogAsync(
await _dialogManager.ShowDialogAsync(
_viewModelManager.CreateMessageBoxViewModel(
"Error",
// Short error message for YouTube-related errors, full for others
// Short error message for SoundCloud-related errors, full for others
ex is SoundcloudExplodeException
? ex.Message
: ex.ToString()
Expand Down
2 changes: 1 addition & 1 deletion SoundCloudDownloader/Views/Dialogs/SettingsView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<Run Text="it's recommended to leave this option enabled to ensure that the app" />
<LineBreak />
<Run Text=" " />
<Run Text="is compatible with the latest version of YouTube." />
<Run Text="is compatible with the latest version of SoundCloud." />
</TextBlock>
</ToolTip.Tip>
<TextBlock DockPanel.Dock="Left" Text="Auto-update" />
Expand Down

0 comments on commit 182fa7b

Please sign in to comment.