mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 11:42:16 -05:00
Remove trailing space from IMAP command
This could be the cause of the error reported in issue 3089.
This commit is contained in:
parent
5a22137d54
commit
171711fa9c
@ -908,7 +908,7 @@ public class ImapStore extends Store {
|
||||
try {
|
||||
ImapSearcher searcher = new ImapSearcher() {
|
||||
public List<ImapResponse> search() throws IOException, MessagingException {
|
||||
return executeSimpleCommand(String.format("UID SEARCH *:* "));
|
||||
return executeSimpleCommand("UID SEARCH *:*");
|
||||
}
|
||||
};
|
||||
Message[] messages = search(searcher, null);
|
||||
|
Loading…
Reference in New Issue
Block a user