mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-03 13:44:40 +00:00
Sync now: initialize folder
This commit is contained in:
parent
8de5fe8e90
commit
d55e036eef
1 changed files with 4 additions and 1 deletions
|
@ -695,8 +695,11 @@ public class AdapterFolder extends RecyclerView.Adapter<AdapterFolder.ViewHolder
|
||||||
if (folder == null)
|
if (folder == null)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
if (folder.selectable)
|
if (folder.selectable) {
|
||||||
|
if (!childs)
|
||||||
|
db.folder().setFolderInitialize(folder.id, folder.keep_days);
|
||||||
EntityOperation.sync(context, folder.id, true, !childs);
|
EntityOperation.sync(context, folder.id, true, !childs);
|
||||||
|
}
|
||||||
|
|
||||||
if (childs) {
|
if (childs) {
|
||||||
List<EntityFolder> folders = db.folder().getChildFolders(folder.id);
|
List<EntityFolder> folders = db.folder().getChildFolders(folder.id);
|
||||||
|
|
Loading…
Reference in a new issue