This commit is contained in:
Forrest 2026-08-04 16:08:51 -04:00
parent d558aba246
commit 3bd713d667
17 changed files with 1566 additions and 132 deletions

View file

@ -28,7 +28,9 @@ class _AddToPlaylistSheet extends ConsumerWidget {
@override
Widget build(BuildContext context, WidgetRef ref) {
final accent = Theme.of(context).colorScheme.primary;
final playlists = ref.watch(realPlaylistsProvider);
// Only your own playlists — the server rejects adding tracks to another
// user's shared playlist.
final playlists = ref.watch(myPlaylistsProvider);
final connected = ref.watch(subsonicClientProvider) != null;
return SafeArea(