#[tantek]on another dev topic, good autolinking error catch capjamesg++
#Loqicapjamesg has 42 karma in this channel over the last year (202 in all channels)
#[tantek]I have a bunch of code/cases to not include trailing characters in URLs that are more likely to be part of the surrounding prose context like . ! ? And I need to add ":" to that list
#[tantek]capjamesg[d], re: the trailing ":" getting included, I found the code. I was trimming all of these from the end of a link because they're more likely prose punctuation .!?,;"')]} but not ":" so now I'll make that one character change and see if it fixes it 🙂
#[tantek]huh that one character fix didn't fix it, odd
#[tantek]oh no it did fix it, transient caching (maybe service worker?) issue
[jacky] joined the channel
#jonnybarnesHave just tried to deploy my own `/auth` endpoint, and its not working _sob_
#jonnybarnesTrying to sign in with Quill and something is going wrong I can’t quite work out
#jonnybarnesQuill creates the correct authorization URL, and redirects me to my new /auth endpoint
#jonnybarnesI think its because I’m using samesite=strict on my Cookies, but my webapp thinks I’m not logged in, and I cant get my login flow to redirect back to the `/auth?...` URL
#aaronpkoh yeah your browser won't send cookies when redirecting to your server with samesite=strict
#jonnybarnesyeah changing it to samesite=lax is getting things working
#jonnybarnesthough I now have a bug where I’m not showing the requested scoped correctly on my approval page