Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit 06a3e1f

Browse files
committed
Fix typo causing failure to detect modules.
1 parent 241c508 commit 06a3e1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/fox2code/mmm/manager/ModuleManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ private void scanInternal() {
115115
if (new SuFile("/data/adb/modules/" + module + "/remove").exists()) {
116116
moduleInfo.flags |= ModuleInfo.FLAG_MODULE_UNINSTALLING;
117117
}
118-
if ((!needFallback && new SuFile(modulesPath + module).exists()) || (!firstBoot
118+
if ((!needFallback && new SuFile(modulesPath, module).exists()) || (!firstBoot
119119
&& bootPrefs.getBoolean("module_" + moduleInfo.id + "_active", false))) {
120120
moduleInfo.flags |= ModuleInfo.FLAG_MODULE_ACTIVE;
121121
if (firstScan) {

0 commit comments

Comments
 (0)