|
@@ -225,12 +225,18 @@ const Status = {
|
|
|
muteWordHits () {
|
|
|
return muteWordHits(this.status, this.muteWords)
|
|
|
},
|
|
|
+ rtBotStatus () {
|
|
|
+ return this.statusoid.user.bot
|
|
|
+ },
|
|
|
botStatus () {
|
|
|
return this.status.user.bot
|
|
|
},
|
|
|
botIndicator () {
|
|
|
return this.botStatus && !this.hideBotIndication
|
|
|
},
|
|
|
+ rtBotIndicator () {
|
|
|
+ return this.rtBotStatus && !this.hideBotIndication
|
|
|
+ },
|
|
|
mentionsLine () {
|
|
|
if (!this.headTailLinks) return []
|
|
|
const writtenSet = new Set(this.headTailLinks.writtenMentions.map(_ => _.url))
|