Display correct info in hover preview (#5597)

This commit is contained in:
Apoorv Mishra
2023-07-23 21:31:46 +05:30
committed by GitHub
parent 479b805613
commit 0db6f39f43
3 changed files with 19 additions and 10 deletions

View File

@@ -42,7 +42,7 @@ router.post(
authorize(actor, "read", user);
authorize(actor, "read", document);
ctx.body = presentMention(user, document);
ctx.body = await presentMention(user, document);
return;
}