diff --git a/web/server.py b/web/server.py index ee6cbad..f738ad9 100644 --- a/web/server.py +++ b/web/server.py @@ -223,7 +223,7 @@ async def authenticate(req: Request, code: str = None, state: str = None): return response -@app.post("/bridge", status_code=201, dependencies=[Depends(is_authenticated)] +@app.post("/bridge", status_code=201, dependencies=[Depends(is_authenticated)]) async def bridge(req: Request): now = datetime.utcnow() ts_diff = (now - app.state.last_sender_ts).total_seconds()