fix volume control

This commit is contained in:
deneb 2025-02-26 22:43:53 +01:00
parent 72e8f94143
commit 76d1004b2f

2
app.py
View file

@ -248,7 +248,7 @@ def api_volume():
sock = mpv_socket_open()
if sock is not None:
mpv_socket_command(sock, {"command": ["set", "volume", volume]})
mpv_socket_command(sock, {"command": ["set", "volume", str(volume)]})
sock.close()
return jsonify(volume)