From 5df59c08c6fc4e3ce9abe7107e82952cd511e84c Mon Sep 17 00:00:00 2001 From: Alberto Ponces Date: Mon, 22 Aug 2022 01:40:25 +0100 Subject: [PATCH] fix: minor typo on patcher tmp path --- lib/services/patcher_api.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/patcher_api.dart b/lib/services/patcher_api.dart index 241fb458..b5b1130e 100644 --- a/lib/services/patcher_api.dart +++ b/lib/services/patcher_api.dart @@ -29,7 +29,7 @@ class PatcherAPI { Future initPatcher() async { Directory appCache = await getTemporaryDirectory(); - _tmpDir = Directory('$appCache/patcher'); + _tmpDir = Directory('${appCache.path}/patcher'); _tmpDir!.createSync(); _workDir = _tmpDir!.createTempSync('tmp-'); _inputFile = File('${_workDir!.path}/base.apk');