mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
Changed IMAP command "UID SEARCH (HEADER MESSAGE-ID %s)" to "UID SEARCH HEADER MESSAGE-ID %s"
Fixes issue 1031.
This commit is contained in:
parent
d022be83ae
commit
8049e90b8c
@ -1594,7 +1594,7 @@ public class ImapStore extends Store
|
||||
|
||||
List<ImapResponse> responses =
|
||||
executeSimpleCommand(
|
||||
String.format("UID SEARCH (HEADER MESSAGE-ID %s)", messageId));
|
||||
String.format("UID SEARCH HEADER MESSAGE-ID %s", messageId));
|
||||
for (ImapResponse response1 : responses)
|
||||
{
|
||||
if (response1.mTag == null && response1.get(0).equals("SEARCH")
|
||||
|
Loading…
Reference in New Issue
Block a user