From 28551c810309c69c8cc58fbc254507e705e8fa05 Mon Sep 17 00:00:00 2001 From: Hazelnoot Date: Wed, 21 May 2025 08:27:23 -0400 Subject: use config.url instead of "https://${config.host}" --- packages/frontend/src/utility/extract-preview-urls.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/frontend/src/utility') diff --git a/packages/frontend/src/utility/extract-preview-urls.ts b/packages/frontend/src/utility/extract-preview-urls.ts index e14ed68f27..dd066df888 100644 --- a/packages/frontend/src/utility/extract-preview-urls.ts +++ b/packages/frontend/src/utility/extract-preview-urls.ts @@ -3,7 +3,7 @@ * SPDX-License-Identifier: AGPL-3.0-only */ -import { host } from '@@/js/config.js'; +import * as config from '@@/js/config.js'; import type * as Misskey from 'misskey-js'; import type * as mfm from '@transfem-org/sfm-js'; import { extractUrlFromMfm } from '@/utility/extract-url-from-mfm.js'; @@ -18,15 +18,15 @@ export function extractPreviewUrls(note: Misskey.entities.Note, contents: mfm.Mf url !== note.url && url !== note.uri && // Local note - url !== `https://${host}/notes/${note.id}` && + url !== `${config.url}/notes/${note.id}` && // Remote renote or quote url !== note.renote?.url && url !== note.renote?.uri && // Local renote or quote - url !== `https://${host}/notes/${note.renote?.id}` && + url !== `${config.url}/notes/${note.renote?.id}` && // Remote renote *of* a quote url !== note.renote?.renote?.url && url !== note.renote?.renote?.uri && // Local renote *of* a quote - url !== `https://${host}/notes/${note.renote?.renote?.id}`); + url !== `${config.url}/notes/${note.renote?.renote?.id}`); } -- cgit v1.2.3-freya