From b56bee745b70c62af925392016e9614bc29bbfad Mon Sep 17 00:00:00 2001 From: Izofeu <60717460+Izofeu@users.noreply.github.com> Date: Fri, 16 Jul 2021 22:25:43 +0200 Subject: [PATCH] Update twitfix.py --- twitfix.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/twitfix.py b/twitfix.py index 0514c4c..5ea2e81 100644 --- a/twitfix.py +++ b/twitfix.py @@ -10,6 +10,7 @@ import os app = Flask(__name__) pathregex = re.compile("\\w{1,15}\\/status\\/\\d{19}") 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)"] # Read config from config.json. If it does not exist, create new. if not os.path.exists("config.json"): @@ -72,6 +73,9 @@ def twitfix(sub_path): if user_agent in discord_user_agents: res = embed_video(twitter_url) return res + if user_agent in telegram_user_agents: + res = embed_video(twitter_url) + return res else: print("Redirect to " + twitter_url) return redirect(twitter_url, 301)