Skip to content

Commit 182fa7b

Browse files
committed
Update
1 parent e1ea1c2 commit 182fa7b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

SoundCloudDownloader/ViewModels/Components/DashboardViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ await tagInjector.InjectTagsAsync(
132132
download.Status =
133133
ex is OperationCanceledException ? DownloadStatus.Canceled : DownloadStatus.Failed;
134134

135-
// Short error message for YouTube-related errors, full for others
135+
// Short error message for SoundCloud-related errors, full for others
136136
download.ErrorMessage = ex is SoundcloudExplodeException ? ex.Message : ex.ToString();
137137
}
138138
finally
@@ -218,7 +218,7 @@ await _dialogManager.ShowDialogAsync(
218218
await _dialogManager.ShowDialogAsync(
219219
_viewModelManager.CreateMessageBoxViewModel(
220220
"Error",
221-
// Short error message for YouTube-related errors, full for others
221+
// Short error message for SoundCloud-related errors, full for others
222222
ex is SoundcloudExplodeException
223223
? ex.Message
224224
: ex.ToString()

SoundCloudDownloader/Views/Dialogs/SettingsView.axaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<Run Text="it's recommended to leave this option enabled to ensure that the app" />
6868
<LineBreak />
6969
<Run Text=" " />
70-
<Run Text="is compatible with the latest version of YouTube." />
70+
<Run Text="is compatible with the latest version of SoundCloud." />
7171
</TextBlock>
7272
</ToolTip.Tip>
7373
<TextBlock DockPanel.Dock="Left" Text="Auto-update" />

0 commit comments

Comments
 (0)