mirror of
https://github.com/evennia/evennia.git
synced 2026-03-29 20:17:16 +02:00
Fix wrong display of websocket interface. Resolves #2214.
This commit is contained in:
parent
3c6eeadcf7
commit
e63c2c0ae4
1 changed files with 1 additions and 1 deletions
|
|
@ -394,7 +394,7 @@ if WEBSERVER_ENABLED:
|
|||
w_interface = WEBSOCKET_CLIENT_INTERFACE
|
||||
w_ifacestr = ""
|
||||
if w_interface not in ("0.0.0.0", "::") or len(WEBSERVER_INTERFACES) > 1:
|
||||
w_ifacestr = "-%s" % interface
|
||||
w_ifacestr = "-%s" % w_interface
|
||||
port = WEBSOCKET_CLIENT_PORT
|
||||
|
||||
class Websocket(WebSocketServerFactory):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue