Fix utter stupidity

svn path=/trunk/netsurf/; revision=2536
This commit is contained in:
John Mark Bell 2006-04-16 10:22:53 +00:00
parent faf76f5f5f
commit 9989fd4d3a
1 changed files with 10 additions and 8 deletions

View File

@ -325,15 +325,17 @@ void browser_window_callback(content_msg msg, struct content *c,
browser_window_set_status(bw, c->status_message);
if (bw->history_add) {
history_add(bw->history, c, bw->frag_id);
if (!urldb_add_url(c->url))
LOG(("urldb_add_url failed"));
urldb_set_url_title(c->url,
if (urldb_add_url(c->url)) {
urldb_set_url_title(c->url,
c->title ? c->title : c->url);
urldb_update_url_visit_data(c->url);
urldb_set_url_content_type(c->url, c->type);
/* This is safe as we've just added the URL */
global_history_add(urldb_get_url(c->url));
urldb_update_url_visit_data(c->url);
urldb_set_url_content_type(c->url,
c->type);
/* This is safe as we've just
* added the URL */
global_history_add(
urldb_get_url(c->url));
}
}
switch (c->type) {
case CONTENT_HTML: