Match nick last when checking url

Closes #796
This commit is contained in:
Jahan Addison
2013-10-09 10:09:51 -04:00
committed by TingPing
parent 36e41a6476
commit 120a5a1dcd
2 changed files with 6 additions and 6 deletions

View File

@@ -209,11 +209,11 @@ url_check_word (const char *word)
} m[] = {
{ match_url, WORD_URL },
{ match_email, WORD_EMAIL },
{ match_nick, WORD_NICK },
{ match_channel, WORD_CHANNEL },
{ match_host6, WORD_HOST6 },
{ match_host, WORD_HOST },
{ match_path, WORD_PATH },
{ match_nick, WORD_NICK },
{ NULL, 0}
};
int i;