mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-08-15 19:38:10 +02:00
@@ -28,6 +28,7 @@ class _GeneratedFormModalState extends State<GeneratedFormModal> {
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
values = widget.defaultValues;
|
||||
valid = widget.initValid;
|
||||
}
|
||||
|
||||
|
@@ -362,10 +362,8 @@ class AppsPageState extends State<AppsPage> {
|
||||
);
|
||||
}).then((values) {
|
||||
if (values != null) {
|
||||
bool shouldInstallUpdates =
|
||||
values.isEmpty || values[0] == 'true';
|
||||
bool shouldInstallNew = values.isEmpty ||
|
||||
(values.length >= 2 && values[1] == 'true');
|
||||
bool shouldInstallUpdates = values[0] == 'true';
|
||||
bool shouldInstallNew = values[1] == 'true';
|
||||
settingsProvider
|
||||
.getInstallPermission()
|
||||
.then((_) {
|
||||
|
@@ -70,8 +70,9 @@ class AppsProvider with ChangeNotifier {
|
||||
}
|
||||
|
||||
downloadApk(String apkUrl, String fileName, Function? onProgress,
|
||||
Function? urlModifier,
|
||||
{bool useExistingIfExists = true}) async {
|
||||
Function? urlModifier) async {
|
||||
bool useExistingIfExists =
|
||||
false; // This should be an function argument, but isn't because of the partially downloaded APK issue
|
||||
var destDir = (await getExternalStorageDirectory())!.path;
|
||||
if (urlModifier != null) {
|
||||
apkUrl = await urlModifier(apkUrl);
|
||||
|
Reference in New Issue
Block a user