exclude reply OP from preview

This commit is contained in:
Hazelnoot 2025-05-21 08:31:14 -04:00
parent 28551c8103
commit aaba16c91b
2 changed files with 6 additions and 0 deletions

View file

@ -19,6 +19,11 @@ export function extractPreviewUrls(note: Misskey.entities.Note, contents: mfm.Mf
url !== note.uri &&
// Local note
url !== `${config.url}/notes/${note.id}` &&
// Remote reply
url !== note.reply?.url &&
url !== note.reply?.uri &&
// Local reply
url !== `${config.url}/notes/${note.reply?.id}` &&
// Remote renote or quote
url !== note.renote?.url &&
url !== note.renote?.uri &&