Fix of PGP and potentially other encryption methods by calling correct function that would initiate them in case if someone writes.
This commit is contained in:
John Hernandez
2023-03-31 02:48:20 +02:00
parent 2093fe417f
commit 99c9f150f6
3 changed files with 10 additions and 13 deletions

View File

@@ -645,8 +645,8 @@ sv_ev_incoming_message(ProfMessage* message)
chatwin = wins_get_chat(looking_for_jid);
if (!chatwin) {
ProfWin* window = wins_new_chat(looking_for_jid);
chatwin = (ProfChatWin*)window;
chatwin = chatwin_new(looking_for_jid);
ProfWin* window = (ProfWin*)chatwin;
new_win = TRUE;
if (prefs_get_boolean(PREF_MAM)) {
@@ -689,8 +689,7 @@ sv_ev_incoming_carbon(ProfMessage* message)
gboolean new_win = FALSE;
ProfChatWin* chatwin = wins_get_chat(message->from_jid->barejid);
if (!chatwin) {
ProfWin* window = wins_new_chat(message->from_jid->barejid);
chatwin = (ProfChatWin*)window;
chatwin = chatwin_new(message->from_jid->barejid);
new_win = TRUE;
#ifdef HAVE_OMEMO