1
0
mirror of https://github.com/zedeus/nitter.git synced 2026-05-13 07:42:49 -04:00

Support image alt text

Fixes #559
This commit is contained in:
Zed
2026-02-10 22:42:06 +01:00
parent 40b1ba4e4e
commit 1c06a67afd
9 changed files with 60 additions and 19 deletions
+5 -1
View File
@@ -137,6 +137,10 @@ type
url*: string
thumb*: string
Photo* = object
url*: string
altText*: string
GalleryPhoto* = object
url*: string
tweetId*: string
@@ -217,7 +221,7 @@ type
poll*: Option[Poll]
gif*: Option[Gif]
video*: Option[Video]
photos*: seq[string]
photos*: seq[Photo]
Tweets* = seq[Tweet]