diff options
author | James Booth <boothj5@gmail.com> | 2014-01-13 19:25:08 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-13 19:25:08 +0000 |
commit | df760bed182946745b41b48889b9f5d172cd2eb5 (patch) | |
tree | 6c384d88e0e8a0df10789e8f6d74339bb8ff789b /src | |
parent | a07880f5c0513aeedb88422c422b8c7fb8bf4611 (diff) | |
download | profani-tty-df760bed182946745b41b48889b9f5d172cd2eb5.tar.gz |
Check for already established but not used OTR session on /otr start <contact>
For example, one may have been established from the other end, without any messages being sent yet
Diffstat (limited to 'src')
-rw-r--r-- | src/command/commands.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/command/commands.c b/src/command/commands.c index 170c519c..25139a78 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -2351,9 +2351,10 @@ cmd_otr(gchar **args, struct cmd_help_t help) } else { if (!otr_key_loaded()) { ui_current_print_line("You have not generated or loaded a private key, use '/otr gen'"); + } else if (!otr_is_secure(barejid)) { + message_send("?OTR?", barejid); } else { - char *recipient = ui_current_recipient(); - message_send("?OTR?", recipient); + ui_gone_secure(barejid, otr_is_trusted(barejid)); } } } else { |