mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: reset patches after patching
This commit is contained in:
parent
b07439d402
commit
cd07f39b69
2 changed files with 3 additions and 4 deletions
|
@ -31,7 +31,7 @@ class PatcherAPI {
|
|||
File? outFile;
|
||||
|
||||
Future<void> initialize() async {
|
||||
await _loadPatches();
|
||||
await loadPatches();
|
||||
await _managerAPI.downloadIntegrations();
|
||||
final Directory appCache = await getTemporaryDirectory();
|
||||
_dataDir = await getExternalStorageDirectory() ?? appCache;
|
||||
|
@ -62,7 +62,7 @@ class PatcherAPI {
|
|||
return _patches.where((patch) => patch.compatiblePackages.isEmpty).toList();
|
||||
}
|
||||
|
||||
Future<void> _loadPatches() async {
|
||||
Future<void> loadPatches() async {
|
||||
try {
|
||||
if (_patches.isEmpty) {
|
||||
_patches = await _managerAPI.getPatches();
|
||||
|
|
|
@ -148,9 +148,8 @@ class InstallerViewModel extends BaseViewModel {
|
|||
|
||||
// Necessary to reset the state of patches by reloading them
|
||||
// in a later patching process.
|
||||
// TODO(Benjamin): Fix this not working
|
||||
_managerAPI.patches.clear();
|
||||
await _managerAPI.getPatches();
|
||||
await _patcherAPI.loadPatches();
|
||||
|
||||
try {
|
||||
if (FlutterBackground.isBackgroundExecutionEnabled) {
|
||||
|
|
Loading…
Reference in a new issue