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

Commit eeda837

Browse files
committed
Disable test mode for ExternalHelper
1 parent 35fecf5 commit eeda837

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

app/src/main/java/com/fox2code/mmm/utils/ExternalHelper.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
public final class ExternalHelper {
2525
private static final String TAG = "ExternalHelper";
26-
private static final boolean TEST_MODE = true;
26+
private static final boolean TEST_MODE = false;
2727
private static final String FOX_MMM_OPEN_EXTERNAL =
2828
"com.fox2code.mmm.utils.intent.action.OPEN_EXTERNAL";
2929
private static final String FOX_MMM_EXTRA_REPO_ID = "extra_repo_id";
@@ -35,12 +35,6 @@ public final class ExternalHelper {
3535
private ExternalHelper() {}
3636

3737
public void refreshHelper(Context context) {
38-
// This feature is still WIP
39-
if (!MainApplication.isDeveloper()) {
40-
label = null;
41-
multi = false;
42-
return;
43-
}
4438
Intent intent = new Intent(FOX_MMM_OPEN_EXTERNAL,
4539
Uri.parse("https://fox2code.com/module.zip"));
4640
List<ResolveInfo> resolveInfos = context.getPackageManager()

0 commit comments

Comments
 (0)