commit 097ff997c00f34540703c210a75eaafdfafff6b5 from: Omar Polo date: Tue Mar 09 19:27:03 2021 UTC serialize the url of about: pages commit - 9ca159513d033a9c5b19bc882035bf5126bd6f16 commit + 097ff997c00f34540703c210a75eaafdfafff6b5 blob - fd41dd34ee49a80387c977619c17039f358dffcf blob + fa7bc4bd5791b0a038c6719767da0a74425341cb --- telescope.c +++ telescope.c @@ -234,6 +234,8 @@ load_about_url(struct tab *tab, const char *url) m = strchr(url, ':'); strlcpy(tab->url.scheme, "about", sizeof(tab->url.scheme)); strlcpy(tab->url.path, m+1, sizeof(tab->url.path)); + + strlcpy(tab->urlstr, url, sizeof(tab->urlstr)); if (!strcmp(url, "about:new")) load_page_from_str(tab, about_new);