mirror of
https://github.com/ComradCollective/Comrad
synced 2024-11-03 23:15:33 +00:00
updates
This commit is contained in:
parent
9bfc58fbd6
commit
25a22a14f5
@ -68,7 +68,10 @@ class TheOperator(Operator):
|
||||
|
||||
# unseal
|
||||
self.log('got:',data_b)
|
||||
msg_d = pickle.loads(data_b)
|
||||
msg_d = {
|
||||
'msg':data_b
|
||||
}
|
||||
# msg_d = pickle.loads(data_b)
|
||||
self.log('msg_d',msg_d)
|
||||
msg_obj = Message(msg_d,from_whom=self.op,to_whom=self)
|
||||
|
||||
|
@ -27,9 +27,9 @@ class TheTelephone(Operator):
|
||||
# opp = Operator(pubkey=msg_d['to'])
|
||||
# self.log('got opp:',opp.pubkey.data == msg_d['to'], self.op.pubkey.data == msg_d['to'])
|
||||
|
||||
self.log('got msg_d:',msg_d)
|
||||
# self.log('got msg_d:',msg_d)
|
||||
|
||||
self.log('but going to send just msg?',msg_b)
|
||||
# self.log('but going to send just msg?',msg_b)
|
||||
|
||||
msg_b=msg_d["msg"]
|
||||
msg_b64 = b64encode(msg_b)
|
||||
|
Loading…
Reference in New Issue
Block a user