[fix] Prevent mixed video lists when switching tabs quickly& Not confirming server information when updating accounts

This commit is contained in:
acite
2025-08-27 00:43:02 +08:00
parent 3ed53ee593
commit fc76e6995f
3 changed files with 11 additions and 5 deletions

View File

@@ -106,7 +106,8 @@ fun MeScreen(meScreenViewModel: MeScreenViewModel = viewModel()) {
onClick = {
meScreenViewModel.updateAccount(username, privateKey, context)
},
modifier = Modifier.fillMaxWidth()
modifier = Modifier.fillMaxWidth(),
enabled = privateKey != "******"
) {
Text("Save")
}