summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--res/about/version.gmi1
-rw-r--r--src/ui/documentwidget.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/res/about/version.gmi b/res/about/version.gmi
index c1f7c8b3..eb4805e0 100644
--- a/res/about/version.gmi
+++ b/res/about/version.gmi
@@ -12,6 +12,7 @@
12* Remote bookmarks are grouped under their source in the bookmark list. 12* Remote bookmarks are grouped under their source in the bookmark list.
13* A bookmark's icon is updated after loading the page so it matches the site. 13* A bookmark's icon is updated after loading the page so it matches the site.
14* Fixed parts of text disappearing when the glyph cache fills up. 14* Fixed parts of text disappearing when the glyph cache fills up.
15* Fixed handling of redirection in a background tab — redirected URL would open in the current tab.
15 16
16## 1.0.2 17## 1.0.2
17* Fixed URL input field showing the wrong URL when opening tabs in the background. 18* Fixed URL input field showing the wrong URL when opening tabs in the background.
diff --git a/src/ui/documentwidget.c b/src/ui/documentwidget.c
index ff23b32b..c4cf0db9 100644
--- a/src/ui/documentwidget.c
+++ b/src/ui/documentwidget.c
@@ -1205,7 +1205,7 @@ static void checkResponse_DocumentWidget_(iDocumentWidget *d) {
1205 /* Redirects with the same scheme are automatic. */ 1205 /* Redirects with the same scheme are automatic. */
1206 visitUrl_Visited(visited_App(), d->mod.url, transient_VisitedUrlFlag); 1206 visitUrl_Visited(visited_App(), d->mod.url, transient_VisitedUrlFlag);
1207 postCommandf_App( 1207 postCommandf_App(
1208 "open redirect:%d url:%s", d->redirectCount + 1, cstr_String(dstUrl)); 1208 "open doc:%p redirect:%d url:%s", d, d->redirectCount + 1, cstr_String(dstUrl));
1209 } 1209 }
1210 else { 1210 else {
1211 /* Scheme changes must be manually approved. */ 1211 /* Scheme changes must be manually approved. */