commit d4e31d9472ec2f4ec9e44ad56926ee4cfed157ee
parent 68813b3a4640dcfcbe002a1ff5803f04b9c50c06
Author: Christoph Lohmann <20h@r-36.net>
Date: Tue, 20 Jan 2015 01:59:53 +0100
Oh my blob!
Adding blob: to the URIS handled by the browser.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/surf.c b/surf.c
@@ -222,6 +222,7 @@ beforerequest(WebKitWebView *w, WebKitWebFrame *f, WebKitWebResource *r,
&& !g_str_has_prefix(uri, "about:") \
&& !g_str_has_prefix(uri, "file://") \
&& !g_str_has_prefix(uri, "data:") \
+ && !g_str_has_prefix(uri, "blob:") \
&& strlen(uri) > 0) {
handleplumb(c, w, uri);
}