Hacker News new | ask | show | jobs
by keybpo 976 days ago
the rss feed includes some garbage on the link to the comments. it seems it adds `item` before the `/` which renders the url invalid. eg https://twostopbits.comitem/?id=61 but https://twostopbits.com/item?id=61 works fine
1 comments

The beauty of having the REPL is that I've fixed this. Missing trailing / on the site URL:

    (= site-url* "https://twostopbits.com/")
    "https://twostopbits.com/"
     
    (= parent-url* site-url*)
    "https://twostopbits.com/"