summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2023-04-20 17:14:59 +0200
committerLouis Chemineau <louis@chmn.me>2023-05-15 12:25:31 +0200
commit018c021e2894ccc678843aca337113e444480005 (patch)
tree0190370e179379f134feb49eb65b91b7c5b3831d
parent0bba55e71d489d83adbe2f409833f725d8aa1f23 (diff)
Fix direct message link
Signed-off-by: Louis Chemineau <louis@chmn.me>
-rw-r--r--src/components/TimelinePost.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/TimelinePost.vue b/src/components/TimelinePost.vue
index 6cd0c10b..08cdfd3c 100644
--- a/src/components/TimelinePost.vue
+++ b/src/components/TimelinePost.vue
@@ -212,7 +212,7 @@ export default {
this.$router.push({
name: 'single-post',
params: {
- account: this.item.account.display_name,
+ account: this.item.account.username,
id: this.item.id,
type: 'single-post',
},