Procházet zdrojové kódy

Fix video placeholder thumbnail not showing

Zed před 4 roky
rodič
revize
47ed1a3ae8
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/views/tweet.nim

+ 1 - 1
src/views/tweet.nim

@@ -7,7 +7,7 @@ import ".."/[types, utils, formatters]
 
 proc getSmallPic(url: string): string =
   result = url
-  if "?" notin url:
+  if "?" notin url and not url.endsWith("placeholder.png"):
     result &= ":small"
   result = getPicUrl(result)