forked from axiom-team/jaklis
Fix no title for like getting
parent
5c6bbe1a2e
commit
5479075a1b
|
@ -86,8 +86,12 @@ class ReadLikes:
|
|||
finalPrint['likes'] = []
|
||||
for i in raw:
|
||||
issuer = i['_source']['issuer']
|
||||
# print(issuer)
|
||||
gProfile = self.getProfile(issuer)
|
||||
pseudo = gProfile['title']
|
||||
try:
|
||||
pseudo = gProfile['title']
|
||||
except:
|
||||
pseudo = ''
|
||||
try:
|
||||
payTo = gProfile['pubkey']
|
||||
except:
|
||||
|
|
Loading…
Reference in New Issue