mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-22 14:11:00 +00:00
Log folder attributes
This commit is contained in:
parent
1e0d4d68e3
commit
d4d94dd849
1 changed files with 2 additions and 2 deletions
|
@ -1942,8 +1942,8 @@ public class ServiceSynchronize extends LifecycleService {
|
||||||
String type = null;
|
String type = null;
|
||||||
boolean selectable = true;
|
boolean selectable = true;
|
||||||
String[] attrs = ((IMAPFolder) ifolder).getAttributes();
|
String[] attrs = ((IMAPFolder) ifolder).getAttributes();
|
||||||
Log.i(account.name + ":" + fullName +
|
EntityLog.log(ServiceSynchronize.this,
|
||||||
" attrs=" + TextUtils.join(" ", attrs));
|
account.name + ":" + fullName + " attrs=" + TextUtils.join(" ", attrs));
|
||||||
for (String attr : attrs) {
|
for (String attr : attrs) {
|
||||||
if ("\\Noselect".equals(attr) || "\\NonExistent".equals(attr))
|
if ("\\Noselect".equals(attr) || "\\NonExistent".equals(attr))
|
||||||
selectable = false;
|
selectable = false;
|
||||||
|
|
Loading…
Reference in a new issue