From 4bad86822f10041af9ddcdff8ac53cc5be2a593d Mon Sep 17 00:00:00 2001 From: mae taylor Date: Wed, 23 Jul 2025 22:10:08 +0100 Subject: [PATCH] fix: handles on masto --- src/lib/account.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/account.js b/src/lib/account.js index 3e08748..43d1ac1 100644 --- a/src/lib/account.js +++ b/src/lib/account.js @@ -41,7 +41,7 @@ export function parseAccount(data) { else account.host = get(server).host; - account.fqn = data.fqn || account.username + account.host; + account.fqn = data.fqn || account.username + "@" + account.host; account.mention = "@" + account.username; if (account.host != get(server).host)