From 137c23271eb1fd652c33c749341fd55f71dc75d4 Mon Sep 17 00:00:00 2001 From: zznty <94796179+zznty@users.noreply.github.com> Date: Fri, 25 Oct 2024 19:11:32 +0700 Subject: [PATCH] fix: navigation to recent and followings --- MusicX/Helpers/NavigationServiceExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MusicX/Helpers/NavigationServiceExtensions.cs b/MusicX/Helpers/NavigationServiceExtensions.cs index 175656b..45db5f4 100644 --- a/MusicX/Helpers/NavigationServiceExtensions.cs +++ b/MusicX/Helpers/NavigationServiceExtensions.cs @@ -20,7 +20,7 @@ public static async Task OpenLinkAsync(this NavigationService navigationService, switch (link.Meta.ContentType) { - case "" or null: + case "" or null or "audio_recent" or "audio_followings": { var match = PodcastsCategoryUrl().Match(link.Url);