mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
fix: keystore password dialog showing up before importing (#1068)
This commit is contained in:
parent
08f6724060
commit
0d716513d7
@ -73,10 +73,12 @@ class SExportSection extends StatelessWidget {
|
||||
),
|
||||
),
|
||||
subtitle: I18nText('settingsView.importKeystoreHint'),
|
||||
onTap: () {
|
||||
_settingsViewModel.importKeystore();
|
||||
onTap: () async{
|
||||
await _settingsViewModel.importKeystore();
|
||||
final sManageKeystorePassword = SManageKeystorePassword();
|
||||
sManageKeystorePassword.showKeystoreDialog(context);
|
||||
if(context.mounted){
|
||||
sManageKeystorePassword.showKeystoreDialog(context);
|
||||
}
|
||||
},
|
||||
),
|
||||
ListTile(
|
||||
|
Loading…
Reference in New Issue
Block a user