From a09904678497298376024c797714b9d2c5b53798 Mon Sep 17 00:00:00 2001 From: Dylan Date: Wed, 6 Dec 2023 17:25:28 +0000 Subject: [PATCH] Catch qrt videos as well in regards to fix for 173 --- twitfix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitfix.py b/twitfix.py index 17779fe..8a58a6a 100644 --- a/twitfix.py +++ b/twitfix.py @@ -715,7 +715,7 @@ def embedCombinedVnf(video_link,vnf): if vnf['qrtURL'] is not None: qrt,e=vnfFromCacheOrDL(vnf['qrtURL']) - if (vnf['type'] != "Image") and qrt is not None and qrt['type'] == "Image": + if vnf['type'] != "Image" and vnf['type'] != "Video" and qrt is not None and qrt['type'] == "Image": if qrt['images'][4]!="1": vnf['images'] = qrt['images'] vnf['type'] = "Image"