mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
Update fe-common-core.c
This commit is contained in:
parent
be7a3a85e7
commit
d2062e34cf
1 changed files with 2 additions and 1 deletions
|
|
@ -500,7 +500,8 @@ gboolean strarray_find_dest(char **array, const TEXT_DEST_REC *dest)
|
|||
str += server_tag_len + 1;
|
||||
}
|
||||
|
||||
if (g_strcmp0(str, "") == 0 || g_strcmp0(str, "::all") == 0) {
|
||||
if (g_strcmp0(str, "") == 0 || g_strcmp0(str, "*") == 0 ||
|
||||
g_strcmp0(str, "::all") == 0) {
|
||||
return TRUE;
|
||||
} else if (g_ascii_strcasecmp(str, dest->target) == 0) {
|
||||
return TRUE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue