mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 04:16:38 +02:00
core, plugins: make info, info_hashtable and infolist case sensitive (issue #1872)
This commit is contained in:
@@ -794,7 +794,7 @@ weechat_js_infolist_cb (const void *pointer, void *data,
|
||||
if (!infolist_name || !infolist_name[0])
|
||||
return NULL;
|
||||
|
||||
if (weechat_strcasecmp (infolist_name, "javascript_script") == 0)
|
||||
if (weechat_strcmp (infolist_name, "javascript_script") == 0)
|
||||
{
|
||||
return plugin_script_infolist_list_scripts (weechat_js_plugin,
|
||||
js_scripts, obj_pointer,
|
||||
|
||||
Reference in New Issue
Block a user