summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/misc/get-note-html.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/remote/activitypub/misc/get-note-html.ts')
-rw-r--r--src/remote/activitypub/misc/get-note-html.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/remote/activitypub/misc/get-note-html.ts b/src/remote/activitypub/misc/get-note-html.ts
index 683860d9cc..3800b40608 100644
--- a/src/remote/activitypub/misc/get-note-html.ts
+++ b/src/remote/activitypub/misc/get-note-html.ts
@@ -1,6 +1,6 @@
import * as mfm from 'mfm-js';
-import { Note } from '../../../models/entities/note';
-import { toHtml } from '../../../mfm/to-html';
+import { Note } from '@/models/entities/note.js';
+import { toHtml } from '../../../mfm/to-html.js';
export default function(note: Note) {
let html = note.text ? toHtml(mfm.parse(note.text), JSON.parse(note.mentionedRemoteUsers)) : null;