Merge pull request #979 from deltachat/fix-show-option

init the show-emails-option with the correct value
This commit is contained in:
björn petersen
2019-06-26 23:14:39 +02:00
committed by GitHub
@@ -76,7 +76,7 @@ public class ChatsPreferenceFragment extends ListSummaryPreferenceFragment {
initializeListSummary((ListPreferenceWithSummary) findPreference("pref_compression"));
String value = Integer.toString(dcContext.getConfigInt("pref_show_emails"));
String value = Integer.toString(dcContext.getConfigInt("show_emails"));
showEmails.setValue(value);
updateListSummary(showEmails, value);