mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Fix default value of auto-open pref.
This commit is contained in:
parent
47ead693a4
commit
43b635ec25
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue