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

@@ -16,7 +16,7 @@ import 'package:dynamic_color/dynamic_color.dart';
import 'package:device_info_plus/device_info_plus.dart';
import 'package:android_alarm_manager_plus/android_alarm_manager_plus.dart';
const String currentVersion = '0.7.5';
const String currentVersion = '0.7.6';
const String currentReleaseTag =
'v$currentVersion-beta'; // KEEP THIS IN SYNC WITH GITHUB RELEASES

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