aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorshpuld <shp@cock.li>2019-01-27 11:35:29 +0200
committershpuld <shp@cock.li>2019-01-27 11:35:29 +0200
commit20f113e811bbc87e875a91b1828e2435bdc7751b (patch)
tree189b189e917257d3dc68205fb2010918750843a4 /src
parentff5f5095dfa16933cac91a58142a4541b1db010b (diff)
Remove logs
Diffstat (limited to 'src')
-rw-r--r--src/components/status/status.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index b52071d8..13e79dd0 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -74,9 +74,6 @@ const Status = {
(this.$store.state.config.hideAttachmentsInConv && this.inConversation)
},
userProfileLink () {
- if (this.status.user.screen_name === null) {
- console.log(this.status.user)
- }
return this.generateUserProfileLink(this.status.user.id, this.status.user.screen_name)
},
replyProfileLink () {
@@ -297,9 +294,6 @@ const Status = {
this.showPreview = false
},
generateUserProfileLink (id, name) {
- if (!name) {
- console.log(id, name)
- }
return generateProfileLink(id, name, this.$store.state.instance.restrictedNicknames)
}
},