mastoapi: Fixed login bug.

This commit is contained in:
default 2024-04-27 08:30:56 +02:00
parent be935b32c6
commit 6bcb248254

View File

@ -291,7 +291,7 @@ int oauth_post_handler(const xs_dict *req, const char *q_path,
*body = xs_dup(code);
}
else {
if (xs_str_in(redir, "?"))
if (xs_str_in(redir, "?") != -1)
*body = xs_fmt("%s&code=%s", redir, code);
else
*body = xs_fmt("%s?code=%s", redir, code);