mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-10-22 10:23:45 +02:00
Allow for alternative app dirs (unfinished)
This commit is contained in:
@@ -338,9 +338,9 @@ class _AppPageState extends State<AppPage> {
|
||||
try {
|
||||
HapticFeedback.heavyImpact();
|
||||
var res = await appsProvider.downloadAndInstallLatestApps(
|
||||
app?.app.id != null ? [app!.app.id] : [],
|
||||
globalNavigatorKey.currentContext,
|
||||
settingsProvider);
|
||||
app?.app.id != null ? [app!.app.id] : [],
|
||||
globalNavigatorKey.currentContext,
|
||||
);
|
||||
if (app?.app.installedVersion != null && !trackOnly) {
|
||||
// ignore: use_build_context_synchronously
|
||||
showError(tr('appsUpdated'), context);
|
||||
|
@@ -381,8 +381,7 @@ class AppsPageState extends State<AppsPage> {
|
||||
: () {
|
||||
appsProvider.downloadAndInstallLatestApps(
|
||||
[listedApps[appIndex].app.id],
|
||||
globalNavigatorKey.currentContext,
|
||||
settingsProvider).catchError((e) {
|
||||
globalNavigatorKey.currentContext).catchError((e) {
|
||||
showError(e, context);
|
||||
return <String>[];
|
||||
});
|
||||
@@ -699,8 +698,8 @@ class AppsPageState extends State<AppsPage> {
|
||||
toInstall.addAll(trackOnlyUpdateIdsAllOrSelected);
|
||||
}
|
||||
appsProvider
|
||||
.downloadAndInstallLatestApps(toInstall,
|
||||
globalNavigatorKey.currentContext, settingsProvider)
|
||||
.downloadAndInstallLatestApps(
|
||||
toInstall, globalNavigatorKey.currentContext)
|
||||
.catchError((e) {
|
||||
showError(e, context);
|
||||
return <String>[];
|
||||
|
Reference in New Issue
Block a user