aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/status/status.js')
-rw-r--r--src/components/status/status.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index 87ef90d8..f33293f4 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -34,6 +34,13 @@ const Status = {
muteWords () {
return this.$store.state.config.muteWords
},
+ userClass () {
+ console.log(this.statusoid.user)
+ console.log(this.statusoid.user.screen_name)
+ return 'USER____' + this.statusoid.user.screen_name
+ .replace(/\./g,'_')
+ .replace(/\@/g,'_AT_')
+ },
hideAttachments () {
return (this.$store.state.config.hideAttachments && !this.inConversation) ||
(this.$store.state.config.hideAttachmentsInConv && this.inConversation)