From b18f792596ff2603eff5572bdf6e91877f903bcd Mon Sep 17 00:00:00 2001 From: L <92271804+jean-jacket@users.noreply.github.com> Date: Wed, 6 Aug 2025 14:01:59 +0100 Subject: [PATCH] fix(route/apple): add guid to items (#19760) * fix: add guid to items * fix: reduce the number of feed items * Revert "fix: reduce the number of feed items" --- lib/routes/apple/design.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/routes/apple/design.ts b/lib/routes/apple/design.ts index 1e70c78c3..7569420f2 100644 --- a/lib/routes/apple/design.ts +++ b/lib/routes/apple/design.ts @@ -1,6 +1,7 @@ import { Route } from '@/types'; import { parseDate } from '@/utils/parse-date'; import ofetch from '@/utils/ofetch'; +import md5 from '@/utils/md5'; import { load } from 'cheerio'; export const route: Route = { @@ -37,6 +38,7 @@ async function handler() { return { description, + guid: md5(`${title}${description}${date}`), link, pubDate: parseDate(date), title,