don't use multiline string for browser auth #23
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "fix/no-multiline-string"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
currently, if the user tries to authenticate with
Gift.authenticate()
, the browser will open a malformed URL and return a 404 because the URL string contains multiple lines and indentation:this PR fixes it by not using a multiline string. it's not the prettiest to be on one line, so if you'd like a better way to do it while keeping it free of tab characters and newlines i'm open to suggestions 🙂
Thanks! ^^