mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-10 07:50:19 +00:00
Fix string handling for Turkish locale
This commit is contained in:
@@ -321,7 +321,7 @@ notifygui_add_cb (GtkDialog *dialog, gint response, gpointer entry)
|
||||
if (text[0] && response == GTK_RESPONSE_ACCEPT)
|
||||
{
|
||||
networks = GTK_ENTRY (g_object_get_data (G_OBJECT (entry), "net"))->text;
|
||||
if (strcasecmp (networks, "ALL") == 0 || networks[0] == 0)
|
||||
if (g_ascii_strcasecmp (networks, "ALL") == 0 || networks[0] == 0)
|
||||
notify_adduser (text, NULL);
|
||||
else
|
||||
notify_adduser (text, networks);
|
||||
|
||||
Reference in New Issue
Block a user