Fix trying to send None as a TFW message

This commit is contained in:
Kristóf Tóth 2019-07-03 15:49:20 +02:00
parent 81accf94ae
commit 49844c7b58
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class FSMManagingEventHandler(EventHandler):
sign_message(self.auth_key, message)
sign_message(self.auth_key, fsm_update_message)
self.server_connector.send_message(fsm_update_message, Scope.BROADCAST)
self.send_message(message)
self.send_message(message)
except KeyError:
LOG.error('IGNORING MESSAGE: Invalid message received: %s', message)