mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
parent
78b870b5ec
commit
5b40696ea0
@ -1,3 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
./configure CFLAGS='-g -O0' CXXFLAGS='-g -O0'
|
||||
./configure CFLAGS='-g3 -O0' CXXFLAGS='-g3 -O0'
|
||||
|
@ -135,10 +135,14 @@ static void
|
||||
_cons_show_typing(const char * const barejid)
|
||||
{
|
||||
ProfWin *console = wins_get_console();
|
||||
PContact contact = roster_get_contact(barejid);
|
||||
const char * display_usr = NULL;
|
||||
if (p_contact_name(contact) != NULL) {
|
||||
display_usr = p_contact_name(contact);
|
||||
PContact contact = roster_get_contact(barejid);
|
||||
if (contact != NULL) {
|
||||
if (p_contact_name(contact) != NULL) {
|
||||
display_usr = p_contact_name(contact);
|
||||
} else {
|
||||
display_usr = barejid;
|
||||
}
|
||||
} else {
|
||||
display_usr = barejid;
|
||||
}
|
||||
|
@ -1258,10 +1258,14 @@ _ui_recipient_gone(const char * const barejid)
|
||||
if (barejid == NULL)
|
||||
return;
|
||||
|
||||
PContact contact = roster_get_contact(barejid);
|
||||
const char * display_usr = NULL;
|
||||
if (p_contact_name(contact) != NULL) {
|
||||
display_usr = p_contact_name(contact);
|
||||
PContact contact = roster_get_contact(barejid);
|
||||
if (contact != NULL) {
|
||||
if (p_contact_name(contact) != NULL) {
|
||||
display_usr = p_contact_name(contact);
|
||||
} else {
|
||||
display_usr = barejid;
|
||||
}
|
||||
} else {
|
||||
display_usr = barejid;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user