fix copy/paste error in last commit
[claws.git] / src / plugins / fancy / fancy_web_extension.c
index a92c0989ad864c0ff37b5c198037c5996694f9d8..26072bfa250538155c70ab47404154e16a7d2f7f 100644 (file)
@@ -39,9 +39,9 @@ static gboolean web_page_send_request_cb(WebKitWebPage *web_page,
        if (scheme == NULL)
                return TRUE;
 #if GLIB_CHECK_VERSION(2,66,0)
-       if (g_ascii_strcasecmp(scheme, "cid") == 0 ||
-           g_ascii_strcasecmp(scheme, "file") == 0 ||
-           g_ascii_strcasecmp(scheme, "about") == 0)
+       if (strcmp(scheme, "cid") == 0 ||
+           strcmp(scheme, "file") == 0 ||
+           strcmp(scheme, "about") == 0)
                is_remote = FALSE;
 #else
        if (g_ascii_strcasecmp(scheme, "cid") == 0 ||