mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-21 01:29:50 +00:00
Fix getting host jid after 0a455fbe2d
During the removal of glooxwrapper the function GetJID was mapped to getID. This results in NetClient querying for host jid not getting the right value which prevents hosting a game in the lobby. Reported-by: Dunedan Refs: #7203 Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
This commit is contained in:
@@ -1206,7 +1206,7 @@ std::string XmppClient::GetNick() const
|
||||
|
||||
std::string XmppClient::GetJID() const
|
||||
{
|
||||
return m_client->getID();
|
||||
return m_client->jid().full();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user