disallow discord links in DMs

remotes/1693176582716663532/tmp_refs/heads/watchparty
Aevann1 2022-10-13 15:26:59 +02:00
parent 9f24a8ddc5
commit 6b0e6b49ee
1 changed files with 7 additions and 1 deletions

View File

@ -510,6 +510,9 @@ def message2(v, username):
if 'linkedin.com' in message: abort(403, "This domain 'linkedin.com' is banned.")
if 'discord.gg' in message or 'discord.com' in message or 'discordapp.com' in message:
abort(403, "Stop grooming!")
body_html = sanitize(message)
if not (SITE == 'rdrama.net' and user.id == BLACKJACKBTZ_ID):
@ -574,7 +577,10 @@ def messagereply(v):
if not body and not request.files.get("file"): abort(400, "Message is empty!")
if 'linkedin.com' in body: abort(400, "this domain 'linkedin.com' is banned")
if 'linkedin.com' in body: abort(403, "This domain 'linkedin.com' is banned")
if 'discord.gg' in body or 'discord.com' in body or 'discordapp.com' in body:
abort(403, "Stop grooming!")
id = int(request.values.get("parent_id"))
parent = get_comment(id, v=v)