Fix link regex to match pre-snowflake tweet IDs
This commit is contained in:
parent
f19e3387ba
commit
a59fe47cac
1 changed files with 1 additions and 1 deletions
|
@ -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)"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue