diff options
| author | tusooa <tusooa@kazv.moe> | 2023-12-27 22:55:58 -0500 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-12-27 22:55:58 -0500 |
| commit | a709127a3c9b20d9d6cca6d9d4f00754a4726428 (patch) | |
| tree | 3f3d7a9430fe2100d454c448d8ef6d34f0acd91b | |
| parent | cc4aaccf3834a18a32606ca175dc6bb910a78b60 (diff) | |
Use actor type to determine whether a user is a bot
| -rw-r--r-- | src/components/status/status.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index 458c8554..8f22b708 100644 --- a/src/components/status/status.js +++ b/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 |
