Spaces:
Running
Running
taslim19
commited on
Commit
·
e8b3130
1
Parent(s):
65dca5a
fix: correct unterminated string literal in extol plugin paid status
Browse files
DragMusic/plugins/games/extol.py
CHANGED
@@ -151,7 +151,7 @@ async def check_extol_handler(client, message: Message):
|
|
151 |
else:
|
152 |
status = resp["status"]
|
153 |
if status == "paid":
|
154 |
-
status_str = f"✅ <b>Paid</b><br>From: <code>{resp.get('from_address', '-')}
|
155 |
elif status == "timeout":
|
156 |
status_str = f"⌛ <b>Timeout</b><br>Expired: <code>{resp.get('expired_at', '-')}</code>"
|
157 |
else:
|
|
|
151 |
else:
|
152 |
status = resp["status"]
|
153 |
if status == "paid":
|
154 |
+
status_str = f"✅ <b>Paid</b><br>From: <code>{resp.get('from_address', '-')}</code>, At: <code>{resp.get('paid_at', '-')}</code>"
|
155 |
elif status == "timeout":
|
156 |
status_str = f"⌛ <b>Timeout</b><br>Expired: <code>{resp.get('expired_at', '-')}</code>"
|
157 |
else:
|