enable github update check

This commit is contained in:
sk
2022-11-01 23:27:50 +01:00
parent 10a405ef13
commit 596799bf2f
3 changed files with 21 additions and 11 deletions

View File

@@ -20,7 +20,7 @@ public abstract class GithubSelfUpdater{
}
public static boolean needSelfUpdating(){
return BuildConfig.BUILD_TYPE.equals("githubRelease");
return BuildConfig.BUILD_TYPE.equals("githubRelease") || BuildConfig.BUILD_TYPE.equals("debug");
}
public abstract void maybeCheckForUpdates();