main
Bob Mottram 2021-10-21 20:19:44 +01:00
parent d8b2c396e9
commit d2a4444c7e
2 changed files with 8 additions and 1 deletions

View File

@ -959,3 +959,9 @@ def addCWfromLists(postJsonObject: {}, CWlists: {}, translate: {},
if cw:
postJsonObject['object']['summary'] = cw
postJsonObject['object']['sensitive'] = True
def getCWlistVariable(listName: str) -> str:
"""Returns the variable associated with a CW list
"""
return 'list' + listName.replace(' ', '').replace("'", '')

View File

@ -69,6 +69,7 @@ from webapp_utils import endEditSection
from blog import getBlogAddress
from webapp_post import individualPostAsHtml
from webapp_timeline import htmlIndividualShare
from blocking import getCWlistVariable
def htmlProfileAfterSearch(cssCache: {},
@ -1678,7 +1679,7 @@ def _htmlEditProfileFiltering(baseDir: str, nickname: str, domain: str,
CWlistsStr = ''
for name, item in CWlists.items():
variableName = 'list' + name.replace(' ', '').replace("'", '')
variableName = getCWlistVariable(name)
listIsEnabled = False
if listsEnabled:
if name in listsEnabled: