소스 검색

Use actor type to determine whether a user is a bot

tusooa 1 년 전
부모
커밋
a709127a3c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/components/status/status.js

+ 1 - 1
src/components/status/status.js

@@ -233,7 +233,7 @@ const Status = {
       return muteWordHits(this.status, this.muteWords)
     },
     botStatus () {
-      return this.status.user.bot
+      return this.status.user.actor_type === 'Service'
     },
     showActorTypeIndicator () {
       return !this.hideBotIndication