From bf8b00214243832185584104d25f35fd50d5103d Mon Sep 17 00:00:00 2001 From: theguymadmax <171496228+theguymadmax@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:14:07 -0500 Subject: [PATCH] Backport pull request #7290 from jellyfin-web/release-10.11.z Fix library not refreshing after adding new media library Original-merge: 21d7dd86ea68077efe1b2efcf3246958e8ee76d8 Merged-by: thornbill Backported-by: thornbill --- src/apps/dashboard/routes/libraries/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/apps/dashboard/routes/libraries/index.tsx b/src/apps/dashboard/routes/libraries/index.tsx index a5b8d656f..5ba9cfac7 100644 --- a/src/apps/dashboard/routes/libraries/index.tsx +++ b/src/apps/dashboard/routes/libraries/index.tsx @@ -29,7 +29,8 @@ export const Component = () => { const showMediaLibraryCreator = useCallback(() => { const mediaLibraryCreator = new MediaLibraryCreator({ - collectionTypeOptions: getCollectionTypeOptions() + collectionTypeOptions: getCollectionTypeOptions(), + refresh: true }) as Promise; void mediaLibraryCreator.then((hasChanges: boolean) => {