mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-07 03:07:26 +01:00
Load sort type from correct shared preferences (#1202)
When extracting sort type loading logic the shared preferences that are used to load sort type got accidentally changed to the wrong ones. This resulted in always using the default value which is displayed as Best. Fortunately the saving code was not changed so only reading has to be fixed.
This commit is contained in:
parent
0ae9b74729
commit
ff10eb5f92
@ -814,11 +814,11 @@ public class ViewPostDetailFragment extends Fragment implements FragmentCommunic
|
|||||||
|
|
||||||
@NonNull
|
@NonNull
|
||||||
private SortType.Type loadSortType() {
|
private SortType.Type loadSortType() {
|
||||||
String sortTypeName = mSharedPreferences.getString(SharedPreferencesUtils.SORT_TYPE_POST_COMMENT, SortType.Type.CONFIDENCE.name());
|
String sortTypeName = mSortTypeSharedPreferences.getString(SharedPreferencesUtils.SORT_TYPE_POST_COMMENT, SortType.Type.CONFIDENCE.name());
|
||||||
if (SortType.Type.BEST.name().equals(sortTypeName)) {
|
if (SortType.Type.BEST.name().equals(sortTypeName)) {
|
||||||
// migrate from BEST to CONFIDENCE
|
// migrate from BEST to CONFIDENCE
|
||||||
// key guaranteed to exist because got non-default value
|
// key guaranteed to exist because got non-default value
|
||||||
mSharedPreferences.edit()
|
mSortTypeSharedPreferences.edit()
|
||||||
.putString(SharedPreferencesUtils.SORT_TYPE_POST_COMMENT, SortType.Type.CONFIDENCE.name())
|
.putString(SharedPreferencesUtils.SORT_TYPE_POST_COMMENT, SortType.Type.CONFIDENCE.name())
|
||||||
.apply();
|
.apply();
|
||||||
return SortType.Type.CONFIDENCE;
|
return SortType.Type.CONFIDENCE;
|
||||||
|
Loading…
Reference in New Issue
Block a user