fix: update announcement links to use the correct domain

This commit is contained in:
daniel31x13
2025-12-16 01:13:00 -05:00
parent f30bf63c24
commit 3d0651d4af
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ export default function Announcement({ toggleAnnouncementBar }: Props) {
values={{ version: announcementId }}
components={[
<Link
href={`https://blog.linkwarden.app/releases/${announcementId}`}
href={`https://linkwarden.app/blog/releases/${announcementId}`}
target="_blank"
className="underline decoration-dotted underline-offset-4 hover:text-primary duration-100"
key={0}

View File

@@ -2,7 +2,7 @@ export default async function getLatestVersion(setShowAnnouncement: Function) {
const announcementId = localStorage.getItem("announcementId");
const response = await fetch(
`https://blog.linkwarden.app/latest-announcement.json`
`https://linkwarden.app/blog/latest-announcement.json`
);
const data = await response.json();