From ed479866cc8fbc6966f9e5c424a03fd6beffc65e Mon Sep 17 00:00:00 2001 From: Hay1tsme Date: Sat, 18 Feb 2023 23:57:45 -0500 Subject: [PATCH] fix download order --- core/allnet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/allnet.py b/core/allnet.py index 9d59c2e..b32b7f7 100644 --- a/core/allnet.py +++ b/core/allnet.py @@ -155,7 +155,7 @@ class AllnetServlet: def handle_dlorder(self, request: Request, _: Dict): request_ip = request.getClientAddress().host try: - req = AllnetDownloadOrderRequest(self.billing_req_to_dict(request.content.getvalue())[0]) + req = AllnetDownloadOrderRequest(self.allnet_req_to_dict(request.content.getvalue())[0]) # Validate the request. Currently we only validate the fields we plan on using if not req.game_id or not req.ver or not req.token or not req.serial or not req.ip: