talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit f0a04026a2f670f041b3bbc3874571f735c7785b
parent b358b973c9335674f23e7ed093db9e3319b4ab4a
Author: Paul <paul@claws-mail.org>
Date:   Mon, 24 Oct 2022 10:28:06 +0100

fix copy/paste error in last commit

Diffstat:
Msrc/plugins/fancy/fancy_web_extension.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 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 ||