[imaplib2 removal] Revert "Added check for IDLE in capabilities"
This reverts commit 17ec4df02a
.
This commit is contained in:
parent
a3a0a68163
commit
8e1fc71879
@ -406,8 +406,8 @@ class IdleThread(object):
|
||||
|
||||
def noop(self):
|
||||
imapobj = self.parent.acquireconnection()
|
||||
imapobj.noop()
|
||||
self.event.wait()
|
||||
imapobj.noop()
|
||||
self.parent.releaseconnection(imapobj)
|
||||
|
||||
def dosync(self):
|
||||
@ -434,10 +434,7 @@ class IdleThread(object):
|
||||
self.needsync = True
|
||||
self.event.set()
|
||||
imapobj = self.parent.acquireconnection()
|
||||
if "IDLE" in imapobj.capabilities:
|
||||
imapobj.idle(callback=callback)
|
||||
else:
|
||||
imapobj.noop()
|
||||
imapobj.idle(callback=callback)
|
||||
self.event.wait()
|
||||
if self.event.isSet():
|
||||
imapobj.noop()
|
||||
|
Loading…
Reference in New Issue
Block a user