PREF_UPD_NOTIFY default is true, not false

This commit is contained in:
Daniel Martí 2014-04-30 00:33:10 +02:00
parent 663a95c7a9
commit a0b39cd150

View File

@ -333,7 +333,7 @@ public class UpdateService extends IntentService implements ProgressListener {
notifyContentProviders();
if (prefs.getBoolean(Preferences.PREF_UPD_NOTIFY, false)) {
if (prefs.getBoolean(Preferences.PREF_UPD_NOTIFY, true)) {
performUpdateNotification(appsToUpdate.values());
}
}