Bugfix in release asset download

This commit is contained in:
Imran Remtulla
2024-04-07 02:19:40 -04:00
parent 377ecef1b4
commit 8527ad0007

View File

@@ -970,7 +970,8 @@ class AppsProvider with ChangeNotifier {
.getSource(app.url, overrideSource: app.overrideSource)
.getRequestHeaders(app.additionalSettings,
forAPKDownload:
fileUrl.key.endsWith('.apk') ? true : false));
fileUrl.key.endsWith('.apk') ? true : false),
useExisting: false);
notificationsProvider
.notify(DownloadedNotification(fileUrl.key, fileUrl.value));
} catch (e) {