mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Make read-story retention default off.
This commit is contained in:
parent
df14782cc4
commit
6f222e8da6
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@
|
|||
android:entryValues="@array/default_network_select_values"
|
||||
android:defaultValue="@string/default_network_select_value" />
|
||||
<CheckBoxPreference
|
||||
android:defaultValue="true"
|
||||
android:defaultValue="false"
|
||||
android:key="keep_old_stories"
|
||||
android:title="@string/settings_keep_old_stories"
|
||||
android:summary="@string/settings_keep_old_stories_sum" />
|
||||
|
|
|
@ -414,6 +414,6 @@ public class PrefsUtils {
|
|||
|
||||
public static boolean isKeepOldStories(Context context) {
|
||||
SharedPreferences prefs = context.getSharedPreferences(PrefConstants.PREFERENCES, 0);
|
||||
return prefs.getBoolean(PrefConstants.KEEP_OLD_STORIES, true);
|
||||
return prefs.getBoolean(PrefConstants.KEEP_OLD_STORIES, false);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue