server: also listen to ipv6

The [::] address will listen to both ipv4/ipv6 addresses.
This commit is contained in:
Jörg Thalheim
2021-04-22 12:38:55 +02:00
committed by Eren Gölge
parent ef37633cb3
commit f5fd7f78d4
+1 -1
View File
@@ -117,7 +117,7 @@ def tts():
def main():
app.run(debug=args.debug, host="0.0.0.0", port=args.port)
app.run(debug=args.debug, host="::", port=args.port)
if __name__ == "__main__":