From f7bbb20c383eaa12b1b24b13f9d722c12dd50509 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Thu, 2 Jan 2025 17:32:29 +0100 Subject: [PATCH] fix: popular lists info --- .../(tabs)/(home)/settings/popular-lists/page.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app/(auth)/(tabs)/(home)/settings/popular-lists/page.tsx b/app/(auth)/(tabs)/(home)/settings/popular-lists/page.tsx index 5e7b1c79..bbb89400 100644 --- a/app/(auth)/(tabs)/(home)/settings/popular-lists/page.tsx +++ b/app/(auth)/(tabs)/(home)/settings/popular-lists/page.tsx @@ -19,7 +19,9 @@ export default function page() { const [settings, updateSettings] = useSettings(); const handleOpenLink = () => { - Linking.openURL("https://github.com/fredrikburmester/marlin-search"); + Linking.openURL( + "https://github.com/lostb1t/jellyfin-plugin-collection-import" + ); }; const queryClient = useQueryClient(); @@ -101,6 +103,13 @@ export default function page() { )} )} + + Popular Lists is a plugin that enables you to show custom Jellyfin lists + on the Streamyfin home page.{" "} + + Read more about Popular Lists. + + ); }