Skip to content
Snippets Groups Projects
Commit 20549bfd authored by rinsuki's avatar rinsuki
Browse files

Fix #1729

parent d692bb3c
No related branches found
No related tags found
No related merge requests found
export default (mention: {
uri: string;
username: string;
host: string;
}) => ({
import { IUser, isRemoteUser } from "../../../models/user";
import config from "../../../config";
export default (mention: IUser) => ({
type: 'Mention',
href: mention.uri,
name: `@${mention.username}@${mention.host}`
href: isRemoteUser(mention) ? mention.uri : `${config.url}/@${mention.username}`,
name: isRemoteUser(mention) ? `@${mention.username}@${mention.host}` : `@${mention.username}`,
});
......@@ -54,9 +54,18 @@ export default async function renderNote(note: INote, dive = true) {
? [`${attributedTo}/followers`].concat(mentions)
: [];
const mentionUsers = await User.find({
_id: {
$in: note.mentions
}
});
const hashtagTags = (note.tags || []).map(renderHashtag);
const mentionTags = (note.mentionedRemoteUsers || []).map(renderMention);
const tag = hashtagTags.concat(mentionTags);
const mentionTags = mentionUsers.map(renderMention);
const tag = [
...hashtagTags,
...mentionTags,
];
return {
id: `${config.url}/notes/${note._id}`,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment