Fix incorrect default setting and duplicated option

This commit is contained in:
Eugene Cheung 2017-05-19 00:59:46 -04:00
commit 46aef2628d
2 changed files with 1 additions and 7 deletions

View file

@ -152,7 +152,7 @@ public final class PreferenceUtil {
}
public final boolean classicNotification() {
return mPreferences.getBoolean(CLASSIC_NOTIFICATION, true);
return mPreferences.getBoolean(CLASSIC_NOTIFICATION, false);
}
public void setClassicNotification(final boolean value) {