mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-19 22:36:49 +00:00
/login/top is GET, not POST
This commit is contained in:
parent
8f19352528
commit
a78f13c289
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ async fn main() {
|
|||
tracing_subscriber::fmt::init();
|
||||
|
||||
let app = Router::new()
|
||||
.route("/oauth/ffxivarr/login/top", post(top))
|
||||
.route("/oauth/ffxivarr/login/top", get(top))
|
||||
.route("/oauth/ffxivarr/login/login.send", post(login_send));
|
||||
|
||||
let addr = SocketAddr::from(([127, 0, 0, 1], 6700));
|
||||
|
|
Loading…
Add table
Reference in a new issue