mirror of
https://gitea.tendokyu.moe/Hay1tsme/artemis.git
synced 2025-12-14 08:06:25 +08:00
wacca: fix hash
This commit is contained in:
@@ -97,7 +97,7 @@ class WaccaServlet(BaseServlet):
|
||||
async def render_POST(self, request: Request) -> bytes:
|
||||
def end(resp: Dict) -> bytes:
|
||||
hash = md5(json.dumps(resp, ensure_ascii=False).encode()).digest()
|
||||
return JSONResponse(resp, headers=["X-Wacca-Hash", hash.hex()])
|
||||
return JSONResponse(resp, headers={"X-Wacca-Hash": hash.hex()})
|
||||
|
||||
api = request.path_params.get('api', '')
|
||||
branch = request.path_params.get('branch', '')
|
||||
|
||||
Reference in New Issue
Block a user