Skip to content

Commit

Permalink
update_app_key default value should be false
Browse files Browse the repository at this point in the history
  • Loading branch information
Stypox committed Mar 29, 2024
1 parent a3bbbf0 commit 3703fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/org/schabi/newpipe/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ protected void onPostCreate(final Bundle savedInstanceState) {
final App app = App.getApp();
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(app);

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

0 comments on commit 3703fed

Please sign in to comment.