mirror of https://gitlab.com/bashrc2/epicyon
Remove invalid characters from outgoing content warnings
parent
6806218202
commit
9ddad5366b
2
posts.py
2
posts.py
|
@ -927,7 +927,7 @@ def _createPostBase(baseDir: str, nickname: str, domain: str, port: int,
|
||||||
sensitive = False
|
sensitive = False
|
||||||
summary = None
|
summary = None
|
||||||
if subject:
|
if subject:
|
||||||
summary = validContentWarning(subject)
|
summary = removeInvalidCharacters(validContentWarning(subject))
|
||||||
sensitive = True
|
sensitive = True
|
||||||
|
|
||||||
toRecipients = []
|
toRecipients = []
|
||||||
|
|
Loading…
Reference in New Issue