mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-13 07:05:12 +01:00
Don't allow sending empty messages
This commit is contained in:
parent
9b4b1dfe94
commit
6b8bdfce22
@ -647,7 +647,10 @@ public:
|
||||
virtual void stringCallback(const char *str)
|
||||
{
|
||||
*out = (const char *)xstrdup(str);
|
||||
Gui::gui->status_bar->queueMessage("Network message sent!");
|
||||
if (strlen(str) > 0)
|
||||
Gui::gui->status_bar->queueMessage("Network message sent!");
|
||||
else
|
||||
Gui::gui->status_bar->queueMessage("Not sending empty message");
|
||||
/* Remove thyself! */
|
||||
delete this;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user