From ef207f885be74c8824a20a1e127e615e86e044dc Mon Sep 17 00:00:00 2001 From: sk Date: Fri, 4 Nov 2022 03:37:32 +0100 Subject: [PATCH] increase update check interval --- .../org/joinmastodon/android/updater/GithubSelfUpdaterImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastodon/src/github/java/org/joinmastodon/android/updater/GithubSelfUpdaterImpl.java b/mastodon/src/github/java/org/joinmastodon/android/updater/GithubSelfUpdaterImpl.java index b8ade60a1..bebdfcf44 100644 --- a/mastodon/src/github/java/org/joinmastodon/android/updater/GithubSelfUpdaterImpl.java +++ b/mastodon/src/github/java/org/joinmastodon/android/updater/GithubSelfUpdaterImpl.java @@ -38,7 +38,7 @@ import okhttp3.Response; @Keep public class GithubSelfUpdaterImpl extends GithubSelfUpdater{ - private static final long CHECK_PERIOD=24*3600*1000L; + private static final long CHECK_PERIOD=6*3600*1000L; private static final String TAG="GithubSelfUpdater"; private UpdateState state=UpdateState.NO_UPDATE;