commit 98121e1244b72c0f73e2561a90223620bc925278 from: Omar Polo date: Sun Jul 25 18:48:02 2021 UTC fix gopher requests commit - 886bb66c6851130f6c60d2016503443c251cd564 commit + 98121e1244b72c0f73e2561a90223620bc925278 blob - bc3bfcc362be9577969382cb8717cbec7636da58 blob + 055cff3c8ba8ba82baab7436ea7a428f04ff0846 --- telescope.c +++ telescope.c @@ -650,10 +650,10 @@ load_gopher_url(struct tab *tab, const char *url) } else if (has_prefix(path, "/1/")) { /* gophermap menu/submenu */ gophermap_initparser(&tab->buffer.page); - path += 3; + path += 2; } else if (has_prefix(path, "/0/")) { textplain_initparser(&tab->buffer.page); - path += 3; + path += 2; } else { return; }