diff options
| author | Fuwn <[email protected]> | 2023-12-05 13:51:32 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-05 14:07:05 -0800 |
| commit | 48b83b2a49854738490ef27618e873060a0581e3 (patch) | |
| tree | de6194f5aa9096014b16151da78d1a7ba170185a /src/routes/feeds/activity-notifications | |
| parent | fix(html): theme fouc (diff) | |
| download | due.moe-48b83b2a49854738490ef27618e873060a0581e3.tar.xz due.moe-48b83b2a49854738490ef27618e873060a0581e3.zip | |
feat(html): new favicons
Diffstat (limited to 'src/routes/feeds/activity-notifications')
| -rw-r--r-- | src/routes/feeds/activity-notifications/+server.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/feeds/activity-notifications/+server.ts b/src/routes/feeds/activity-notifications/+server.ts index dd4ee0b4..fde2027d 100644 --- a/src/routes/feeds/activity-notifications/+server.ts +++ b/src/routes/feeds/activity-notifications/+server.ts @@ -19,7 +19,7 @@ const render = (posts: Notification[] = []) => `<?xml version="1.0" encoding="UT <pubDate>${new Date().toUTCString()}</pubDate> <lastBuildDate>${new Date().toUTCString()}</lastBuildDate> <language>en-US</language> - <snf:logo><url>https://due.moe/favicon-192x192.png</url></snf:logo> + <snf:logo><url>https://due.moe/favicon-196x196.png</url></snf:logo> ${posts .filter((notification: Notification) => notification.type !== undefined) .map((notification: Notification) => { |