mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: Move installation log to correct place
This commit is contained in:
parent
91837ebade
commit
c4a795418f
1 changed files with 2 additions and 1 deletions
|
@ -279,7 +279,6 @@ class InstallerViewModel extends BaseViewModel {
|
|||
);
|
||||
isInstalled = await _patcherAPI.installPatchedFile(_app);
|
||||
if (isInstalled) {
|
||||
update(1.0, 'Installed!', 'Installed!');
|
||||
_app.isFromStorage = false;
|
||||
_app.patchDate = DateTime.now();
|
||||
_app.appliedPatches = _patches.map((p) => p.name).toList();
|
||||
|
@ -293,6 +292,8 @@ class InstallerViewModel extends BaseViewModel {
|
|||
}
|
||||
|
||||
await _managerAPI.savePatchedApp(_app);
|
||||
|
||||
update(1.0, 'Installed!', 'Installed!');
|
||||
}
|
||||
} on Exception catch (e) {
|
||||
if (kDebugMode) {
|
||||
|
|
Loading…
Reference in a new issue