forked from indymedia/epicyon
Ensure that there isn't any html in feed text
parent
8c3ecf2e94
commit
fd07e67f3b
|
@ -103,7 +103,11 @@ def addNewswireDictEntry(baseDir: str, domain: str,
|
||||||
tags=[], maxTags=32) -> None:
|
tags=[], maxTags=32) -> None:
|
||||||
"""Update the newswire dictionary
|
"""Update the newswire dictionary
|
||||||
"""
|
"""
|
||||||
allText = removeHtml(title + ' ' + description)
|
# remove any markup
|
||||||
|
title = removeHtml(title)
|
||||||
|
description = removeHtml(description)
|
||||||
|
|
||||||
|
allText = title + ' ' + description
|
||||||
|
|
||||||
# check that none of the text is filtered against
|
# check that none of the text is filtered against
|
||||||
if isFiltered(baseDir, 'news', domain, allText):
|
if isFiltered(baseDir, 'news', domain, allText):
|
||||||
|
|
Loading…
Reference in New Issue