missing comma
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2021-04-26 19:33:33 +02:00
parent 4837948fba
commit c682fe1e2a
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class NetWrapper:
retheader, retheadersignature = self.signRSAHeader("IDY", {})
retmsg = self.ecryptRSAMessage(b64decode(incommingJson['message']).decode('UTF-8'))
identMsg = json.dumps(
{'header': retheader, 'headersignature': retheadersignature
{'header': retheader, 'headersignature': retheadersignature,
'message': b64encode(retmsg).decode('UTF-8')}).encode(
'UTF-8')
self.network.send_msg(self.clientAddr, identMsg)