forked from Hay1tsme/artemis
wacca: fix hash
This commit is contained in:
parent
c680c2d4e9
commit
be0e407ebe
@ -97,7 +97,7 @@ class WaccaServlet(BaseServlet):
|
|||||||
async def render_POST(self, request: Request) -> bytes:
|
async def render_POST(self, request: Request) -> bytes:
|
||||||
def end(resp: Dict) -> bytes:
|
def end(resp: Dict) -> bytes:
|
||||||
hash = md5(json.dumps(resp, ensure_ascii=False).encode()).digest()
|
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', '')
|
api = request.path_params.get('api', '')
|
||||||
branch = request.path_params.get('branch', '')
|
branch = request.path_params.get('branch', '')
|
||||||
|
Loading…
Reference in New Issue
Block a user