Skip to content

Commit 3703fed

Browse files
committed
update_app_key default value should be false
1 parent a3bbbf0 commit 3703fed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/main/java/org/schabi/newpipe/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ protected void onPostCreate(final Bundle savedInstanceState) {
183183
final App app = App.getApp();
184184
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(app);
185185

186-
if (prefs.getBoolean(app.getString(R.string.update_app_key), true)) {
186+
if (prefs.getBoolean(app.getString(R.string.update_app_key), false)) {
187187
// Start the worker which is checking all conditions
188188
// and eventually searching for a new version.
189189
NewVersionWorker.enqueueNewVersionCheckingWork(app, false);

0 commit comments

Comments
 (0)