From 018c021e2894ccc678843aca337113e444480005 Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Thu, 20 Apr 2023 17:14:59 +0200 Subject: [PATCH] Fix direct message link Signed-off-by: Louis Chemineau --- src/components/TimelinePost.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', },