We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfb8c1c commit 9da2058Copy full SHA for 9da2058
apps/graphql-api/src/calendar/calendar.controller.ts
@@ -49,7 +49,7 @@ export class CalendarController {
49
start: new Date(episode.firstAired),
50
alarms: null,
51
allDay: true,
52
- summary: `${bookmark.title} S${episode.season}E${episode.number}. ${episode.title}`,
+ summary: `${bookmark.title} S${`0${episode.season}`.slice(-2)}E${`0${episode.number}`.slice(-2)}. ${episode.title}`,
53
description: episode.synopsis
54
})
55
0 commit comments