diff options
author | Georg Lukas <georg@op-co.de> | 2020-08-21 10:24:12 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2020-09-23 23:20:47 +0200 |
commit | 9a90c76eba79d5854e4ce47691f802bcdbf6c9ca (patch) | |
tree | 11a8732374b1817d6807353c357a9084ec7fbf4f /src | |
parent | f8da92a8bed4fccff5e1999460b6ad3723d247f3 (diff) | |
download | biboumi-9a90c76eba79d5854e4ce47691f802bcdbf6c9ca.tar.gz biboumi-9a90c76eba79d5854e4ce47691f802bcdbf6c9ca.tar.bz2 biboumi-9a90c76eba79d5854e4ce47691f802bcdbf6c9ca.tar.xz biboumi-9a90c76eba79d5854e4ce47691f802bcdbf6c9ca.zip |
Do not mark message to bare JID private/no-copy
Diffstat (limited to 'src')
-rw-r--r-- | src/bridge/bridge.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bridge/bridge.cpp b/src/bridge/bridge.cpp index ae459fd..a5bd6f5 100644 --- a/src/bridge/bridge.cpp +++ b/src/bridge/bridge.cpp @@ -875,7 +875,7 @@ void Bridge::send_message(const Iid& iid, const std::string& nick, const std::st this->xmpp.send_message(std::to_string(iid), this->make_xmpp_body(body, encoding), this->user_jid, - "chat", false, true); + "chat", false, false); } } |