aboutsummaryrefslogtreecommitdiff
path: root/src/components/mentions/mentions.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/mentions/mentions.js')
-rw-r--r--src/components/mentions/mentions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/mentions/mentions.js b/src/components/mentions/mentions.js
index 3563101b..e84d1912 100644
--- a/src/components/mentions/mentions.js
+++ b/src/components/mentions/mentions.js
@@ -1,6 +1,6 @@
import Status from '../status/status.vue'
// Temporary
-import { prepareStatus, updateTimestampsInStatuses } from '../../modules/statuses.js'
+import { prepareStatus } from '../../modules/statuses.js'
import { map } from 'lodash'
const Mentions = {
@@ -20,7 +20,7 @@ const Mentions = {
created () {
this.$store.state.api.backendInteractor.fetchMentions({username: this.username})
.then((mentions) => {
- this.mentions = updateTimestampsInStatuses(map(mentions, prepareStatus))
+ this.mentions = map(mentions, prepareStatus)
})
}
}