1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 12:56:37 +02:00

core: make filter names case sensitive (issue #1872)

This commit is contained in:
Sébastien Helleu
2023-01-26 23:26:43 +01:00
parent 7a8ce6c9ae
commit 8744fdfaf3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1347,7 +1347,7 @@ plugin_api_infolist_filter_cb (const void *pointer, void *data,
ptr_filter = ptr_filter->next_filter)
{
if (!arguments || !arguments[0]
|| string_match (ptr_filter->name, arguments, 0))
|| string_match (ptr_filter->name, arguments, 1))
{
if (!gui_filter_add_to_infolist (ptr_infolist, ptr_filter))
{