diff --git a/SoundCloudDownloader/ViewModels/Components/DashboardViewModel.cs b/SoundCloudDownloader/ViewModels/Components/DashboardViewModel.cs index a0f3a6b..4152279 100644 --- a/SoundCloudDownloader/ViewModels/Components/DashboardViewModel.cs +++ b/SoundCloudDownloader/ViewModels/Components/DashboardViewModel.cs @@ -169,7 +169,7 @@ private async Task ProcessQueryAsync() ); // Single track - if (result.Tracks.Count == 1) + if (result.Tracks.Count == 1 && result.Tracks[0].Media is not null) { var track = result.Tracks.Single();