Merge pull request #1399 from akihikodaki/duplicate

Implement Hashtag object
This commit is contained in:
syuilo 2018-04-05 01:32:03 +09:00 committed by GitHub
commit 18728cb394
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 2 deletions

View File

@ -55,9 +55,16 @@ class Creator {
const { window } = new JSDOM(note.content);
const mentions = [];
const tags = [];
for (const { href, type } of note.tags) {
for (const { href, name, type } of note.tags) {
switch (type) {
case 'Hashtag':
if (name.startsWith('#')) {
tags.push(name.slice(1));
}
break;
case 'Mention':
mentions.push(resolvePerson(resolver, href));
break;
@ -78,7 +85,8 @@ class Creator {
appId: null,
viaMobile: false,
geo: undefined,
uri: note.id
uri: note.id,
tags
}, null, null, await Promise.all(mentions));
const promises = [];