Kaydet (Commit) c1e32b65 authored tarafından Piers Lauder's avatar Piers Lauder

Fixed IMAP4_SSL read bug introduced by patch 956394

üst 8f2b2440
......@@ -1105,7 +1105,7 @@ class IMAP4_SSL(IMAP4):
while read < size:
data = self.sslobj.read(size-read)
read += len(data)
chunks.append(size)
chunks.append(data)
return ''.join(chunks)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment