Make read-story retention default off.

This commit is contained in:
dosiecki 2014-08-02 14:59:10 -07:00
parent df14782cc4
commit 6f222e8da6
2 changed files with 2 additions and 2 deletions

View file

@ -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" />

View file

@ -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);
}
}