From e1dd2a8d734bfbeefc7d5681aeb4066b882f929a Mon Sep 17 00:00:00 2001 From: Gabriele M Date: Sat, 8 Jul 2017 21:39:10 +0200 Subject: [PATCH] Fix the download path of CMUpdater --- src/org/lineageos/updater/misc/LegacySupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/lineageos/updater/misc/LegacySupport.java b/src/org/lineageos/updater/misc/LegacySupport.java index 3913da8..132488f 100644 --- a/src/org/lineageos/updater/misc/LegacySupport.java +++ b/src/org/lineageos/updater/misc/LegacySupport.java @@ -66,7 +66,7 @@ public final class LegacySupport { Log.d(TAG, "Importing downloads"); List notReplacing = new ArrayList<>(); - File updatesDir = new File(context.getDataDir(), "updates/"); + File updatesDir = new File(context.getDataDir(), "app_updates/"); if (updatesDir.isDirectory()) { UpdatesDbHelper dbHelper = new UpdatesDbHelper(context); File[] files = updatesDir.listFiles();