Fix "STOPPED" message.
This commit is contained in:
parent
7a1f7be898
commit
c538ce3a46
1 changed files with 1 additions and 5 deletions
|
@ -217,16 +217,12 @@ class WebsocketServer:
|
||||||
parts = len(msg_split)
|
parts = len(msg_split)
|
||||||
source = msg_split[0]
|
source = msg_split[0]
|
||||||
command = msg_split[1]
|
command = msg_split[1]
|
||||||
|
data = None
|
||||||
if parts == 4:
|
if parts == 4:
|
||||||
#status = msg_split[2]
|
#status = msg_split[2]
|
||||||
data = msg_split[3]
|
data = msg_split[3]
|
||||||
elif parts == 3:
|
elif parts == 3:
|
||||||
data = msg_split[2]
|
data = msg_split[2]
|
||||||
else:
|
|
||||||
self.logger.log.exception(
|
|
||||||
"Invalid message size:", msg_split
|
|
||||||
)
|
|
||||||
continue
|
|
||||||
|
|
||||||
# TODO ENUM
|
# TODO ENUM
|
||||||
if source not in ["WEBSOCKET", "ALL"]:
|
if source not in ["WEBSOCKET", "ALL"]:
|
||||||
|
|
Loading…
Reference in a new issue