Tiny bugfix

This commit is contained in:
Imran Remtulla
2022-11-20 11:05:33 -05:00
parent 602f0c3bb2
commit 868ba84c9a
3 changed files with 5 additions and 2 deletions

View File

@@ -388,6 +388,9 @@ class AppsPageState extends State<AppsPage> {
);
}).then((values) {
if (values != null) {
if (values.isEmpty) {
values = ['true', 'true'];
}
bool shouldInstallUpdates = values[0] == 'true';
bool shouldInstallNew = values[1] == 'true';
settingsProvider