Renamed roster_jid_from_handle -> roster_barejid_from_handle

This commit is contained in:
James Booth
2013-05-21 20:50:05 +01:00
parent 58bd4f2547
commit d16a31d096
4 changed files with 17 additions and 7 deletions

View File

@@ -62,8 +62,8 @@ message_send(const char * const msg, const char * const recipient)
{
const char * jid = NULL;
if (roster_jid_from_handle(recipient) != NULL) {
jid = roster_jid_from_handle(recipient);
if (roster_barejid_from_handle(recipient) != NULL) {
jid = roster_barejid_from_handle(recipient);
} else {
jid = recipient;
}