diff options
| author | Fuwn <[email protected]> | 2025-05-29 05:16:16 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-29 05:16:16 -0700 |
| commit | 03c8dbc09aecbb1cb87e2568d8532fa59452197e (patch) | |
| tree | 46514bc5e013302dd5920ab364262ba2e915e5d8 | |
| parent | feat(oauth): Expire session after 180 days (diff) | |
| download | due.moe-03c8dbc09aecbb1cb87e2568d8532fa59452197e.tar.xz due.moe-03c8dbc09aecbb1cb87e2568d8532fa59452197e.zip | |
fix(feeds): Remove duplicate whitespace
| -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 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() |