1
0
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:
Sébastien Helleu
2023-01-15 17:41:21 +01:00
parent 5bd97b9630
commit 489c264202
12 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -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,