diff options
author | James Booth <boothj5@gmail.com> | 2015-10-26 23:10:30 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-10-26 23:10:30 +0000 |
commit | 9d3bcf5f90af09eb073b1caf64ccfadaad599e4b (patch) | |
tree | c8e59b4d7e46f139aa90cb3d45e9b5d72a25a729 /src/otr | |
parent | 4fb0b4b0da41525a8c9d70937fcc538aae2877cb (diff) | |
download | profani-tty-9d3bcf5f90af09eb073b1caf64ccfadaad599e4b.tar.gz |
ui_gone_insecure takes ProfChatWin
Diffstat (limited to 'src/otr')
-rw-r--r-- | src/otr/otr.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/otr/otr.c b/src/otr/otr.c index 6b9dd34d..8d1ee545 100644 --- a/src/otr/otr.c +++ b/src/otr/otr.c @@ -739,7 +739,10 @@ otr_decrypt_message(const char *const from, const char *const message, gboolean if (tlv) { if (context) { otrl_context_force_plaintext(context); - ui_gone_insecure(from); + ProfChatWin *chatwin = wins_get_chat(from); + if (chatwin) { + ui_gone_insecure(chatwin); + } } } |