server: also listen to ipv6

The [::] address will listen to both ipv4/ipv6 addresses.
pull/446/head
Jörg Thalheim 2021-04-16 09:26:36 +02:00 committed by Eren Gölge
parent ef37633cb3
commit f5fd7f78d4
1 changed files with 1 additions and 1 deletions

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__":