don't bother try checking invalid urls

remotes/1693176582716663532/tmp_refs/heads/watchparty
justcool393 2022-11-11 23:40:17 -06:00
parent d3b7f043c6
commit b1924e0cdf
1 changed files with 2 additions and 0 deletions

View File

@ -1068,6 +1068,8 @@ extensions = IMAGE_FORMATS + VIDEO_FORMATS + AUDIO_FORMATS
def get_post_title(v):
url = request.values.get("url")
if not url or '\\' in url: abort(400)
url = url.strip()
if not url.startswith('http'): abort(400)
checking_url = url.lower().split('?')[0].split('%3F')[0]
if any((checking_url.endswith(f'.{x}') for x in extensions)):