Fix websocket not restarting

Didn't realise the method and class variable had the same name.
This commit is contained in:
angelblue05 2016-01-15 01:26:54 -06:00
parent 5112500f4d
commit fa826c2791

View file

@ -27,7 +27,7 @@ class WebSocket_Client(threading.Thread):
_shared_state = {}
client = None
stopClient = False
stopWebsocket = False
def __init__(self):
@ -302,8 +302,7 @@ class WebSocket_Client(threading.Thread):
while not monitor.abortRequested():
self.client.run_forever()
if self.stopClient:
if self.stopWebsocket:
break
if monitor.waitForAbort(5):
@ -314,6 +313,6 @@ class WebSocket_Client(threading.Thread):
def stopClient(self):
self.stopClient = True
self.stopWebsocket = True
self.client.close()
self.logMsg("Stopping thread.")