Fix link regex to match pre-snowflake tweet IDs

This commit is contained in:
adryd 2021-07-20 00:17:57 -04:00
parent f19e3387ba
commit a59fe47cac
No known key found for this signature in database
GPG Key ID: B5D2A33C5F203BC7
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ import re
import os
app = Flask(__name__)
pathregex = re.compile("\\w{1,15}\\/status\\/\\d{19}")
pathregex = re.compile("\\w{1,15}\\/status\\/\\d{2,20}")
discord_user_agents = ["Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:38.0) Gecko/20100101 Firefox/38.0", "Mozilla/5.0 (compatible; Discordbot/2.0; +https://discordapp.com)"]
telegram_user_agents = ["TelegramBot (like TwitterBot)"]