diff --git a/core/allnet.py b/core/allnet.py index 0b6006b..c878870 100644 --- a/core/allnet.py +++ b/core/allnet.py @@ -358,7 +358,7 @@ class AllnetServlet: else: machine = await self.data.arcade.get_machine(req.serial) - if not machine or not machine['ota_enable'] or not machine['is_cab'] or machine['is_blacklisted']: + if not machine or not machine['ota_enable'] or not machine['is_cab']: resp = urllib.parse.unquote(urllib.parse.urlencode(vars(resp))) + "\n" if is_dfi: return PlainTextResponse( @@ -635,7 +635,7 @@ class BillingServlet: await self.data.base.log_event("billing", "BILLING_CHECKIN_OK", logging.INFO, "", log_details, None, machine['arcade'], machine['id'], request_ip, req.gameid, req.gamever) self.logger.info( - f"Unregistered Billing checkin from {request_ip}: game {req.gameid} ver {req.gamever} keychip {req.keychipid} playcount " + f"Billing checkin from {request_ip}: game {req.gameid} ver {req.gamever} keychip {req.keychipid} playcount " f"{req.playcnt} billing_type {req.billingtype.name} nearfull {req.nearfull} playlimit {req.playlimit}" ) else: