1
0
forked from 0ad/0ad

Fix typos in log and warn messages

Patch by: LudovicRousseau
Refs: #6098

Differential Revision: https://code.wildfiregames.com/D3659
Differential Revision: https://code.wildfiregames.com/D3660
This was SVN commit r25033.
This commit is contained in:
Imarok 2021-03-10 16:50:15 +00:00
parent 4b951cf4ba
commit 7376e43e06
2 changed files with 2 additions and 2 deletions

View File

@ -522,7 +522,7 @@ function openDialog(dialogName, data, player)
let dialog = Engine.GetGUIObjectByName(dialogName + "-dialog");
if (!dialog)
{
warn("messages.js: Unknow dialog with name " + dialogName);
warn("messages.js: Unknown dialog with name " + dialogName);
return;
}
dialog.hidden = false;

View File

@ -953,7 +953,7 @@ bool XmppClient::handleIq(const glooxwrapper::IQ& iq)
const ConnectionData* cd = iq.findExtension<ConnectionData>(EXTCONNECTIONDATA);
if (cd)
{
LOGMESSAGE("XmppClient: Recieved request for connection data from %s", iq.from().username());
LOGMESSAGE("XmppClient: Received request for connection data from %s", iq.from().username());
if (!g_NetServer)
{
glooxwrapper::IQ response(gloox::IQ::Result, iq.from(), iq.id());