[hackers] [surf] Modify decideresource() and favicon handling || Quentin Rameau

From: <git_AT_suckless.org>
Date: Sun, 22 Nov 2015 15:35:13 +0100 (CET)

commit c3a827d621fbedfb974db9d137d3e5bea66490b4
Author: Quentin Rameau <quinq_AT_fifth.space>
AuthorDate: Sun Nov 22 15:19:10 2015 +0100
Commit: Quentin Rameau <quinq_AT_fifth.space>
CommitDate: Sun Nov 22 15:19:10 2015 +0100

    Modify decideresource() and favicon handling
    
    Return as soon as the request has been processed.
    No need to modify the favicon uri, just ignore it.

diff --git a/surf.c b/surf.c
index 1f3b7db..f5c7d1e 100644
--- a/surf.c
+++ b/surf.c
_AT_@ -1143,10 +1143,10 @@ decideresource(WebKitPolicyDecision *d, Client *c)
             webkit_response_policy_decision_get_response(r);
         const gchar *uri = webkit_uri_response_get_uri(res);
 
- if (g_str_has_suffix(uri, "/favicon.ico"))
- webkit_uri_request_set_uri(
- webkit_response_policy_decision_get_request(r),
- "about:blank");
+ if (g_str_has_suffix(uri, "/favicon.ico")) {
+ webkit_policy_decision_ignore(d);
+ return;
+ }
 
         if (!g_str_has_prefix(uri, "http://")
             && !g_str_has_prefix(uri, "https://")
_AT_@ -1164,6 +1164,7 @@ decideresource(WebKitPolicyDecision *d, Client *c)
                 if (isascii) {
                         handleplumb(c, uri);
                         webkit_policy_decision_ignore(d);
+ return;
                 }
         }
 
Received on Sun Nov 22 2015 - 15:35:13 CET

This archive was generated by hypermail 2.3.0 : Sun Nov 22 2015 - 15:36:24 CET