summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ogClient.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ogClient.py b/src/ogClient.py
index 31ee5d3..c4dcd7e 100644
--- a/src/ogClient.py
+++ b/src/ogClient.py
@@ -33,7 +33,7 @@ class ogClient:
if self.mode not in {'virtual', 'live', 'linux', 'windows'}:
logging.critical('Invalid ogClient mode')
raise ValueError('Mode not supported.')
- if self.mode in {'linux', 'windows'}:
+ if self.mode in {'linux', 'windows', 'live'}:
self.event_sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.event_sock.setblocking(0)
self.event_sock.bind(('127.0.0.1', 55885))