1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Fix missing change from last commit

This commit is contained in:
Michael Vetter 2020-02-20 23:43:35 +01:00
parent 1f8b1eb740
commit c13553bfcb

View File

@ -631,7 +631,7 @@ sv_ev_incoming_message(ProfMessage *message)
#ifndef HAVE_OMEMO
if (message->encrypted) {
if (chatwin->is_otr) {
win_println((ProfWin*)chatwin, THEME_DEFAULT, '-', "PGP encrypted message received whilst in OTR session.");
win_println((ProfWin*)chatwin, THEME_DEFAULT, "-", "PGP encrypted message received whilst in OTR session.");
} else {
_sv_ev_incoming_pgp(chatwin, new_win, message, TRUE);
}