Fix default value of auto-open pref.

This commit is contained in:
dosiecki 2015-10-30 02:19:42 -07:00
parent 47ead693a4
commit 43b635ec25

View file

@ -479,7 +479,7 @@ public class PrefsUtils {
public static boolean isAutoOpenFirstUnread(Context context) {
SharedPreferences prefs = context.getSharedPreferences(PrefConstants.PREFERENCES, 0);
return prefs.getBoolean(PrefConstants.STORIES_AUTO_OPEN_FIRST, true);
return prefs.getBoolean(PrefConstants.STORIES_AUTO_OPEN_FIRST, false);
}
public static boolean isOfflineEnabled(Context context) {