mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 08:33:37 +02:00
Small fix
This commit is contained in:
@@ -2069,7 +2069,7 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
||||
db.message().liveHidden(account, thread).observe(getViewLifecycleOwner(), new Observer<List<Long>>() {
|
||||
@Override
|
||||
public void onChanged(List<Long> ids) {
|
||||
if (ids != null)
|
||||
if (ids != null) {
|
||||
for (long id : ids) {
|
||||
Log.i("Hidden id=" + id);
|
||||
for (String key : values.keySet())
|
||||
@@ -2077,6 +2077,8 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
||||
bodies.remove(id);
|
||||
attachments.remove(id);
|
||||
}
|
||||
updateExpanded();
|
||||
}
|
||||
}
|
||||
});
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user