mirror of https://gitlab.com/bashrc2/epicyon
Debug
parent
6b6304b595
commit
f963712ba8
|
@ -382,9 +382,12 @@ def updateSpeaker(baseDir: str, nickname: str, domain: str,
|
|||
if announcingActor:
|
||||
announcedNickname = getNicknameFromActor(announcingActor)
|
||||
announcedDomain = getDomainFromActor(announcingActor)
|
||||
announcedHandle = announcedNickname + '@' + announcedDomain
|
||||
content = \
|
||||
translate['announces'] + ' ' + announcedHandle + '. ' + content
|
||||
if announcedNickname and announcedDomain:
|
||||
announcedHandle = announcedNickname + '@' + announcedDomain
|
||||
content = \
|
||||
translate['announces'] + ' ' + announcedHandle + '. ' + content
|
||||
else:
|
||||
print('WARN: announcingActor ' + str(announcingActor))
|
||||
speakerJson = _speakerEndpointJson(speakerName, summary,
|
||||
content, imageDescription,
|
||||
detectedLinks, gender)
|
||||
|
|
Loading…
Reference in New Issue