mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 12:26:40 +02:00
core, plugins: make info, info_hashtable and infolist case sensitive (issue #1872)
This commit is contained in:
@@ -1336,7 +1336,7 @@ weechat_python_infolist_cb (const void *pointer, void *data,
|
||||
if (!infolist_name || !infolist_name[0])
|
||||
return NULL;
|
||||
|
||||
if (weechat_strcasecmp (infolist_name, "python_script") == 0)
|
||||
if (weechat_strcmp (infolist_name, "python_script") == 0)
|
||||
{
|
||||
return plugin_script_infolist_list_scripts (weechat_python_plugin,
|
||||
python_scripts,
|
||||
|
||||
Reference in New Issue
Block a user