updated dockerfile, fixed bug in showing name in mail
This commit is contained in:
parent
c0c0f838b6
commit
f4cc1a6f8f
5 changed files with 22 additions and 12 deletions
|
@ -31,7 +31,7 @@ class OnionrCLIUI:
|
|||
self.myCore = apiInst.get_core()
|
||||
return
|
||||
def start(self):
|
||||
name = input("Enter your name")
|
||||
name = input("Enter your name: ")
|
||||
self.myCore.insertBlock("userInfo-" + str(uuid.uuid1()), sign=True, header='userInfo', meta={'name': name})
|
||||
return
|
||||
|
||||
|
|
|
@ -82,9 +82,14 @@ class OnionrMail:
|
|||
blockCount += 1
|
||||
pmBlockMap[blockCount] = blockHash
|
||||
|
||||
block = Block(blockHash, core=self.myCore)
|
||||
senderKey = block.getMetadata('signer')
|
||||
senderDisplay = onionrusers.OnionrUser(self.myCore, senderKey)
|
||||
block = pmBlocks[blockHash]
|
||||
senderKey = block.signer
|
||||
try:
|
||||
senderKey = senderKey.decode()
|
||||
except AttributeError:
|
||||
pass
|
||||
print("DEBUG:", senderKey)
|
||||
senderDisplay = onionrusers.OnionrUser(self.myCore, senderKey).getName()
|
||||
if senderDisplay == 'anonymous':
|
||||
senderDisplay = senderKey
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue