aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-05-29 05:16:16 -0700
committerFuwn <[email protected]>2025-05-29 05:16:16 -0700
commit03c8dbc09aecbb1cb87e2568d8532fa59452197e (patch)
tree46514bc5e013302dd5920ab364262ba2e915e5d8 /src
parentfeat(oauth): Expire session after 180 days (diff)
downloaddue.moe-03c8dbc09aecbb1cb87e2568d8532fa59452197e.tar.xz
due.moe-03c8dbc09aecbb1cb87e2568d8532fa59452197e.zip
fix(feeds): Remove duplicate whitespace
Diffstat (limited to 'src')
-rw-r--r--src/routes/feeds/activity-notifications/+server.ts2
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 b8675de9..37190255 100644
--- a/src/routes/feeds/activity-notifications/+server.ts
+++ b/src/routes/feeds/activity-notifications/+server.ts
@@ -24,7 +24,7 @@ const render = (posts: Notification[] = []) => `<?xml version="1.0" encoding="UT
${posts
.filter((notification: Notification) => notification.type !== undefined)
.map((notification: Notification) => {
- let title = `${notification.user.name} ${notification.context}`;
+ let title = `${notification.user.name}${notification.context}`;
let link = `https://anilist.co/user/${notification.user.name}`;
const prettyType = notification.type
.toString()