fix: reset patches after patching

This commit is contained in:
Benjamin Halko 2023-10-04 12:16:56 -07:00
parent b07439d402
commit cd07f39b69
No known key found for this signature in database
GPG Key ID: 790C70040EB331A0
2 changed files with 3 additions and 4 deletions

View File

@ -31,7 +31,7 @@ class PatcherAPI {
File? outFile; File? outFile;
Future<void> initialize() async { Future<void> initialize() async {
await _loadPatches(); await loadPatches();
await _managerAPI.downloadIntegrations(); await _managerAPI.downloadIntegrations();
final Directory appCache = await getTemporaryDirectory(); final Directory appCache = await getTemporaryDirectory();
_dataDir = await getExternalStorageDirectory() ?? appCache; _dataDir = await getExternalStorageDirectory() ?? appCache;
@ -62,7 +62,7 @@ class PatcherAPI {
return _patches.where((patch) => patch.compatiblePackages.isEmpty).toList(); return _patches.where((patch) => patch.compatiblePackages.isEmpty).toList();
} }
Future<void> _loadPatches() async { Future<void> loadPatches() async {
try { try {
if (_patches.isEmpty) { if (_patches.isEmpty) {
_patches = await _managerAPI.getPatches(); _patches = await _managerAPI.getPatches();

View File

@ -148,9 +148,8 @@ class InstallerViewModel extends BaseViewModel {
// Necessary to reset the state of patches by reloading them // Necessary to reset the state of patches by reloading them
// in a later patching process. // in a later patching process.
// TODO(Benjamin): Fix this not working
_managerAPI.patches.clear(); _managerAPI.patches.clear();
await _managerAPI.getPatches(); await _patcherAPI.loadPatches();
try { try {
if (FlutterBackground.isBackgroundExecutionEnabled) { if (FlutterBackground.isBackgroundExecutionEnabled) {