fix(profiles): remount profile session

close #1371
This commit is contained in:
edde746
2026-06-18 00:53:48 +02:00
parent 66b80a33ba
commit 6f39a286d3
35 changed files with 691 additions and 179 deletions
+2 -2
View File
@@ -947,7 +947,7 @@ class MediaContextMenuState extends State<MediaContextMenu> {
try {
final item = _mediaItem!;
final result = await showDialog<String>(
final result = await showScopedDialog<String>(
context: context,
builder: (context) => _PlaylistSelectionDialog(client: client),
);
@@ -1051,7 +1051,7 @@ class MediaContextMenuState extends State<MediaContextMenu> {
final resolvedLibraryId = libraryId;
if (!context.mounted) return;
final result = await showDialog<String>(
final result = await showScopedDialog<String>(
context: context,
builder: (context) => _CollectionSelectionDialog(client: client, libraryId: resolvedLibraryId),
);