From 3dce85d4ae1a159d6fb46ec6d8f5268c2844566d Mon Sep 17 00:00:00 2001 From: gsd Date: Thu, 6 Jun 2024 19:47:59 +0300 Subject: [PATCH] fix commision --- Dockerfile | 2 +- paybot.facti13.py | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index a9aa0d3..b8b7fed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.10 -RUN python -m pip install git+https://git.pblr-nyk.pro/gsd/Donation-Alerts-API-Python git+https://github.com/miguelgrinberg/python-socketio aiohttp websocket-client websockets +RUN python -m pip install git+https://git.pblr-nyk.pro/gsd/Donation-Alerts-API-Python git+https://git.pblr-nyk.pro/mirror/miguelgrinberg.python-socketio aiohttp websocket-client websockets ENV PYTHONUNBUFFERED 1 WORKDIR /app COPY ./ ./ diff --git a/paybot.facti13.py b/paybot.facti13.py index 7e9867f..5dab23a 100644 --- a/paybot.facti13.py +++ b/paybot.facti13.py @@ -38,10 +38,7 @@ class CustomAlerts(Alert): money = event.amount uid = event.id - if event.additional_data.get('is_commission_covered', 0): - seconds = self.price_checker(money, False) - else: - seconds = self.price_checker(money, True) + seconds = self.price_checker(money, event.additional_data.get('is_commission_covered', 0)) if seconds == 0: warning(f"[{uid}] so smol donate {money} RUB")