You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use to_ascii_lowercase when checking for lnurl override start
When calling `instructions.to_lowercase().rfind("lnurl")` and then
using the resulting value as a slice index in `instructions`, we
implicitly assume that any unicode lowercasing will not change the
length of any characters. That's probably fine in practice, but it
seems like a weird assumption to make, so instead we swap it for
`to_ascii_lowercase`.
0 commit comments