Fixed QRTs sometimes failing to embed

This commit is contained in:
Dylan 2023-05-16 15:40:34 +01:00
parent b7f285c2cd
commit 5cb8d479f5

View File

@ -23,7 +23,7 @@ def genPollDisplay(poll):
def formatEmbedDesc(type,body,qrt,pollDisplay,likesDisplay):
# Trim the embed description to 248 characters, prioritizing poll and likes
limit = videoDescLimit if type=="" or type=="Video" else tweetDescLimit
limit = videoDescLimit if type=="" or type=="Video" or (qrt!=None and (qrt["type"]=="" or qrt["type"]=="Video")) else tweetDescLimit
output = ""
if pollDisplay==None: