Poll user folders

This commit is contained in:
M66B 2018-09-30 14:55:47 +00:00
parent e41cc0cccf
commit 84eeadd2f7
1 changed files with 2 additions and 2 deletions

View File

@ -816,7 +816,7 @@ public class ServiceSynchronize extends LifecycleService {
try {
Thread.sleep(account.poll_interval * 60 * 1000L);
if (capIdle) {
if (!EntityFolder.USER.equals(folder.type) && capIdle) {
Log.i(Helper.TAG, folder.name + " request NOOP");
ifolder.doCommand(new IMAPFolder.ProtocolCommand() {
public Object doCommand(IMAPProtocol p) throws ProtocolException {
@ -851,7 +851,7 @@ public class ServiceSynchronize extends LifecycleService {
noops.add(noop);
// Receive folder events
if (capIdle) {
if (!EntityFolder.USER.equals(folder.type) && capIdle) {
Thread idle = new Thread(new Runnable() {
@Override
public void run() {