forked from cxykevin/sacn_accout_system
修复fl的登录bug
This commit is contained in:
parent
1551d554e4
commit
4ab78ff7e5
|
@ -69,8 +69,7 @@ def main(app: FastAPI, ROOT: str, apikeys: dict):
|
|||
|
||||
@app.post("/app/flarum/login")
|
||||
async def login(apikey: str, csrftoken: str, resp: Response, flarum_session: Annotated[str | None, Cookie()] = None):
|
||||
apikey = apikey.replace("/", "")
|
||||
username = await check_apikey(apikey)
|
||||
username = await check_apikey('/'.join(list(apikey)))
|
||||
if (username == ""):
|
||||
return {"msg": "token无效"}
|
||||
if (flarum_session is None):
|
||||
|
|
Loading…
Reference in New Issue