Maintenance scheduled for Thursday, April 10, from 5 PM to 6 PM ET.
fixes #94 (closed)
It looks like there was an update to FastAPI recently (0.95.0 -> 0.95.2), and this updated Starlette to version 0.27.0. This was causing an error where we do a string find to determine if the application is being accessed locally. My guess is that the updated method request.url_for("authorize")
now returns a non-string. This casts the type as a string before the comparison.
I am not a python developer, if you know of a better check then I can update the MR.