Fix quote's "show thread" also shown in parent

このコミットが含まれているのは:
Zed 2019-07-03 12:27:18 +02:00
コミット f235677024
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -67,7 +67,7 @@ proc parseTweet*(node: XmlNode): Tweet =
profile: parseTweetProfile(tweet),
stats: parseTweetStats(tweet),
reply: parseTweetReply(tweet),
hasThread: tweet.select(".self-thread-context") != nil,
hasThread: tweet.select(".content > .self-thread-context") != nil,
pinned: "pinned" in tweet.attr("class"),
available: true
)