RFC 1459 does not require channel name be above 0 characters, only that there's a prefix involved, this behavior is present elsewhere in xchat's join channel dialog, making this match.

This commit is contained in:
Benjamin Burkhart 2013-09-29 17:36:15 +00:00
parent 247d84fbd1
commit 0791c8f069
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ joind_ok_cb (GtkWidget *ok, server *serv)
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (serv->gui->joind_radio2)))
{
char *text = (char *)gtk_entry_get_text (GTK_ENTRY (serv->gui->joind_entry));
if (strlen (text) < 2)
if (strlen (text) < 1)
{
fe_message (_("Channel name too short, try again."), FE_MSG_ERROR);
return;