diff --git a/templates/index.html b/templates/index.html index e0459fd..c759f3f 100644 --- a/templates/index.html +++ b/templates/index.html @@ -8,8 +8,9 @@ + + !--> 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)