Stupid string bug

This commit is contained in:
Ben Arc 2021-04-15 09:46:37 +01:00
parent 704fc042cb
commit f46e992bda

View file

@ -31,9 +31,9 @@ from .crud import (
"animation1": {"type": "string", "required": False}, "animation1": {"type": "string", "required": False},
"animation2": {"type": "string", "required": False}, "animation2": {"type": "string", "required": False},
"animation3": {"type": "string", "required": False}, "animation3": {"type": "string", "required": False},
"animation1threshold": {"type": "integer", "required": False}, "animation1threshold": {"type": "string", "required": False},
"animation2threshold": {"type": "integer", "required": False}, "animation2threshold": {"type": "string", "required": False},
"animation3threshold": {"type": "integer", "required": False}, "animation3threshold": {"type": "string", "required": False},
"animation1webhook": {"type": "string", "required": False}, "animation1webhook": {"type": "string", "required": False},
"animation2webhook": {"type": "string", "required": False}, "animation2webhook": {"type": "string", "required": False},
"animation3webhook": {"type": "string", "required": False}, "animation3webhook": {"type": "string", "required": False},
@ -109,11 +109,11 @@ async def api_copilot_hooker(copilot_id, trigger):
return jsonify({"message": "Copilot link link does not exist."}), HTTPStatus.NOT_FOUND return jsonify({"message": "Copilot link link does not exist."}), HTTPStatus.NOT_FOUND
socket_sendererer = app.socket_sendererer() socket_sendererer = app.socket_sendererer()
if copilot.animation1threshold and g.data['amount'] > copilot.animation1threshold: if copilot.animation1threshold and int(g.data['amount']) > copilot.animation1threshold:
data = copilot.animation1 data = copilot.animation1
if copilot.animation2threshold and g.data['amount'] > copilot.animation2threshold: if copilot.animation2threshold and int(g.data['amount']) > copilot.animation2threshold:
data = copilot.animation2 data = copilot.animation2
if copilot.animation3threshold and g.data['amount'] > copilot.animation3threshold: if copilot.animation3threshold and int(g.data['amount']) > copilot.animation3threshold:
data = copilot.animation3 data = copilot.animation3
async with socket_sendererer.websocket('/ws/compose/' + copilot_id) as the_websocket: async with socket_sendererer.websocket('/ws/compose/' + copilot_id) as the_websocket:
await the_websocket.send(data) await the_websocket.send(data)