Zed 7 роки тому
батько
коміт
d052ff538c
1 змінених файлів з 4 додано та 4 видалено
  1. 4 4
      src/parserutils.nim

+ 4 - 4
src/parserutils.nim

@@ -125,10 +125,10 @@ proc getTweetStats*(tweet: Tweet; node: XmlNode) =
   tweet.likes = "0"
   for action in node.selectAll(".ProfileTweet-actionCountForAria"):
     let text = action.innerText.split()
-    case text[1]
-    of "replies":  tweet.replies = text[0]
-    of "likes":    tweet.likes = text[0]
-    of "retweets": tweet.retweets = text[0]
+    case text[1][0 .. 2]
+    of "ret": tweet.retweets = text[0]
+    of "rep": tweet.replies = text[0]
+    of "lik": tweet.likes = text[0]
 
 proc getGif(player: XmlNode): Gif =
   let