aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorGravatar Michal Sojka <sojkam1@fel.cvut.cz>2010-10-31 22:29:15 +0100
committerGravatar Carl Worth <cworth@cworth.org>2010-11-10 13:09:31 -0800
commitb65a783195cb459a316370eb7a956b6029102f2e (patch)
tree0b5c7f3acbe97c9e6c1001cd86f884f09418d8bb /lib
parent08c735c58e9cc1074d31f21b8e6042adeb8d8844 (diff)
lib: Return added message even if it already was in the database
Diffstat (limited to 'lib')
-rw-r--r--lib/database.cc3
-rw-r--r--lib/notmuch.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/database.cc b/lib/database.cc
index 82c07886..7a00917e 100644
--- a/lib/database.cc
+++ b/lib/database.cc
@@ -1670,7 +1670,8 @@ notmuch_database_add_message (notmuch_database_t *notmuch,
DONE:
if (message) {
- if (ret == NOTMUCH_STATUS_SUCCESS && message_ret)
+ if ((ret == NOTMUCH_STATUS_SUCCESS ||
+ ret == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) && message_ret)
*message_ret = message;
else
notmuch_message_destroy (message);
diff --git a/lib/notmuch.h b/lib/notmuch.h
index bd0880f3..61c68d65 100644
--- a/lib/notmuch.h
+++ b/lib/notmuch.h
@@ -238,7 +238,8 @@ notmuch_database_get_directory (notmuch_database_t *database,
* notmuch database will reference the filename, and will not copy the
* entire contents of the file.
*
- * If 'message' is not NULL, then, on successful return '*message'
+ * If 'message' is not NULL, then, on successful return
+ * (NOTMUCH_STATUS_SUCCESS or NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) '*message'
* will be initialized to a message object that can be used for things
* such as adding tags to the just-added message. The user should call
* notmuch_message_destroy when done with the message. On any failure