From 39985890463218b97acd7da2f90150433144e72d Mon Sep 17 00:00:00 2001 From: javijuol Date: Wed, 11 Mar 2015 16:05:17 +0100 Subject: [PATCH] Fix uid_store command This fix the extra param in store_internal arguments This should fix the problem at #18 --- lib/em-imap/client.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/em-imap/client.rb b/lib/em-imap/client.rb index 94ada03..bc3220e 100644 --- a/lib/em-imap/client.rb +++ b/lib/em-imap/client.rb @@ -339,7 +339,7 @@ def store(seq, name, value) # The same as store, but keyed off UIDs instead of sequence numbers. # def uid_store(seq, name, value) - store_internal("UID", "STORE", seq, name, value) + store_internal("UID STORE", seq, name, value) end # Copy the specified messages to another mailbox.