forked from indymedia/epicyon
Add a space to separate hashtags
parent
c691cff82d
commit
37fee435ec
|
@ -253,8 +253,9 @@ def newswireHashtagProcessing(session, baseDir: str, postJsonObject: {},
|
|||
htId + "</span></a>"
|
||||
content = postJsonObject['object']['content']
|
||||
if hashtagHtml in content:
|
||||
postJsonObject['object']['content'] = \
|
||||
content.replace(hashtagHtml, '')
|
||||
content = \
|
||||
content.replace(hashtagHtml, '').replace(' ', ' ')
|
||||
postJsonObject['object']['content'] = content
|
||||
del postJsonObject['object']['tag'][htId]
|
||||
actionOccurred = True
|
||||
|
||||
|
|
Loading…
Reference in New Issue