Remove underscores from display names

merge-requests/30/head
Bob Mottram 2021-03-03 20:22:18 +00:00
parent dded414a1e
commit 15c5280c95
1 changed files with 1 additions and 0 deletions

View File

@ -377,6 +377,7 @@ def updateSpeaker(baseDir: str, nickname: str, domain: str,
if not speakerName:
return
speakerName = _removeEmojiFromText(speakerName)
speakerName = speakerName.replace('_', ' ')
gender = getGenderFromBio(baseDir, postJsonObject['actor'],
personCache, translate)
if announcingActor: