mirror of
https://github.com/profanity-im/profanity.git
synced 2025-02-02 15:08:15 -05:00
Remove not needed initialization in chatwin_new()
00dbc1ba7c66c3bb6898aed26922bf5295768bb1 attempted to fix https://github.com/profanity-im/profanity/issues/1449. Here we revert the part about initializing is_omemo in chatwin_new() since this is done in win_create_chat() already. The actual mistake was the wrong cast of the muc window which is fixed by the same commit. The mistake was introduced in in 3370418d71de255c832da97113543e554ec0e86b. While being at it we also remove the is_ox initialization since this is handled in win_create_chat()/win_create_muc() too.
This commit is contained in:
parent
a94378f206
commit
3703879a1c
@ -80,7 +80,6 @@ chatwin_new(const char* const barejid)
|
||||
}
|
||||
}
|
||||
|
||||
chatwin->is_omemo = FALSE;
|
||||
#ifdef HAVE_OMEMO
|
||||
if (omemo_automatic_start(barejid)) {
|
||||
omemo_start_session(barejid);
|
||||
@ -92,9 +91,6 @@ chatwin_new(const char* const barejid)
|
||||
iq_mam_request(chatwin);
|
||||
}
|
||||
|
||||
// XEP-0373: OpenPGP for XMPP
|
||||
chatwin->is_ox = FALSE;
|
||||
|
||||
return chatwin;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user