projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1fa08d
)
Don't put 'about:*' uri into history.
author
Daniel Carl
<danielcarl@gmx.de>
Mon, 29 Jul 2013 13:43:41 +0000
(15:43 +0200)
committer
Daniel Carl
<danielcarl@gmx.de>
Mon, 29 Jul 2013 13:43:41 +0000
(15:43 +0200)
src/main.c
patch
|
blob
|
history
diff --git
a/src/main.c
b/src/main.c
index
10f0165
..
6af9d72
100644
(file)
--- a/
src/main.c
+++ b/
src/main.c
@@
-471,8
+471,9
@@
static void webview_load_status_cb(WebKitWebView *view, GParamSpec *pspec)
vb_update_statusbar();
dom_check_auto_insert(view);
-
- history_add(HISTORY_URL, uri, webkit_web_view_get_title(view));
+ if (strncmp(uri, "about:", 6)) {
+ history_add(HISTORY_URL, uri, webkit_web_view_get_title(view));
+ }
break;
case WEBKIT_LOAD_FAILED: