listen on all addresses (incl. IPv6)

This commit is contained in:
deneb 2025-02-25 22:26:02 +01:00
parent bc83fa7848
commit 66fca07ed2

2
app.py
View file

@ -193,6 +193,6 @@ if not music_path.exists():
if __name__ == "__main__":
try:
app.run(host="0.0.0.0", port=1337)
app.run(host="::", port=1337)
finally:
playback_stop()