fix: avoid syncing beat metadata twice when returning from Now Playing -> Library

This commit is contained in:
2026-05-31 11:53:20 +02:00
parent f7c5b932e9
commit 19bbccf244
4 changed files with 24 additions and 2 deletions

View File

@@ -116,7 +116,10 @@ fun LockstepAppNavHost(
playlistId = playlistId,
playback = playback,
viewModel = viewModel,
onBack = { navController.popBackStack() },
onBack = {
viewModel.suppressNextLibraryMetadataSync()
navController.popBackStack()
},
)
}
composable(