fix: npe when loading patch bundle on android 8

This commit is contained in:
Ushie 2023-09-23 00:24:17 +03:00
parent d2b09936d1
commit 0bfa776ce7
No known key found for this signature in database
GPG key ID: B3AAD18842E34632
2 changed files with 12 additions and 1 deletions

View file

@ -306,12 +306,20 @@ class ManagerAPI {
return patches;
}
final File? patchBundleFile = await downloadPatches();
final Directory appCache = await getTemporaryDirectory();
Directory('${appCache.path}/cache').createSync();
final Directory workDir =
Directory('${appCache.path}/cache').createTempSync('tmp-');
final Directory cacheDir = Directory('${workDir.path}/cache');
cacheDir.createSync();
if (patchBundleFile != null) {
try {
final patchesObject = await PatcherAPI.patcherChannel.invokeMethod(
'getPatches',
{
'patchBundleFilePath': patchBundleFile.path,
'cacheDirPath': cacheDir.path,
},
);
final List<Map<String, dynamic>> patchesMap = [];