add missing import for emoji parsing

This commit is contained in:
Johann150 2023-05-30 19:53:17 +02:00
parent 21ab8e75ee
commit f00b3cc378
Signed by untrusted user: Johann150
GPG Key ID: 9EE6577A2A06F8F1
1 changed files with 1 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import { toPuny } from '@/misc/convert-host.js';
import { Emojis } from '@/models/index.js';
import { Emoji } from '@/models/entities/emoji.js';
import { apLogger } from '@/remote/activitypub/logger.js';
import { genId } from '@/misc/gen-id.js';
export function extractApHashtags(tags: IObject | IObject[] | null | undefined): string[] {
if (tags == null) return [];