diff options
| author | Fuwn <[email protected]> | 2023-09-17 23:32:38 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-17 23:32:38 -0700 |
| commit | 16cd96c717fe4a537c1d8c6792cbbf6071317f7c (patch) | |
| tree | 6e6548c656c2639cecaf4593332e387e6a4836d3 /src/routes/feeds/activity-notifications | |
| parent | fix(notifications): add types (diff) | |
| download | due.moe-16cd96c717fe4a537c1d8c6792cbbf6071317f7c.tar.xz due.moe-16cd96c717fe4a537c1d8c6792cbbf6071317f7c.zip | |
fix(notifications): rss standards
Diffstat (limited to 'src/routes/feeds/activity-notifications')
| -rw-r--r-- | src/routes/feeds/activity-notifications/+server.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/feeds/activity-notifications/+server.ts b/src/routes/feeds/activity-notifications/+server.ts index 94ff60c0..db283613 100644 --- a/src/routes/feeds/activity-notifications/+server.ts +++ b/src/routes/feeds/activity-notifications/+server.ts @@ -15,7 +15,7 @@ export const GET = async ({ url }) => { <image> <url>https://due.moe/favicon-192x192.png</url> <link>https://due.moe</link> - <title>期限 Logo</title> + <title>期限 | AniList Notifications</title> </image> ${posts .map((notification: Notification) => { @@ -40,7 +40,7 @@ export const GET = async ({ url }) => { } return `<item> -<guid>${notification.id}</guid> +<guid isPermaLink="false">${notification.id}</guid> <title>${title}</title> <link>${link}</link> <author>${notification.user.name}</author> |