[Commits] [SCM] claws branch, master, updated. 4.1.1-3-gf0a04026a

paul at claws-mail.org paul at claws-mail.org
Mon Oct 24 09:28:12 UTC 2022


The branch, master has been updated
       via  f0a04026a2f670f041b3bbc3874571f735c7785b (commit)
      from  b358b973c9335674f23e7ed093db9e3319b4ab4a (commit)

Summary of changes:
 src/plugins/fancy/fancy_web_extension.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


- Log -----------------------------------------------------------------
commit f0a04026a2f670f041b3bbc3874571f735c7785b
Author: Paul <paul at claws-mail.org>
Date:   Mon Oct 24 10:28:06 2022 +0100

    fix copy/paste error in last commit

diff --git a/src/plugins/fancy/fancy_web_extension.c b/src/plugins/fancy/fancy_web_extension.c
index a92c0989a..26072bfa2 100644
--- a/src/plugins/fancy/fancy_web_extension.c
+++ b/src/plugins/fancy/fancy_web_extension.c
@@ -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 ||

-----------------------------------------------------------------------


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list