mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-31 20:25:38 +00:00
Fixed swiping to archive / conversation
This commit is contained in:
parent
5a93a52ade
commit
7de6f329b8
1 changed files with 1 additions and 1 deletions
|
@ -2751,7 +2751,7 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
|||
if (sourceFolder == null || sourceFolder.read_only)
|
||||
continue;
|
||||
if (EntityFolder.TRASH.equals(targetFolder.type)) {
|
||||
if (EntityFolder.ARCHIVE.equals(sourceFolder.type) && filter_archive)
|
||||
if (EntityFolder.ARCHIVE.equals(sourceFolder.type) && thread && filter_archive)
|
||||
continue;
|
||||
if (EntityFolder.JUNK.equals(sourceFolder.type) && !threaded.folder.equals(message.folder))
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue