We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 641d5d5 commit eaa9bc3Copy full SHA for eaa9bc3
src/util/changelog.ts
@@ -143,7 +143,7 @@ export async function getRSSItems({
143
}: GetRSSItemsOptions): Promise<Array<RSSFeedItem>> {
144
return await Promise.all(
145
notes.map(async (note) => {
146
- const { title, date, products } = note.data;
+ const { title, date, products, scheduled } = note.data;
147
148
const productEntries = await getEntries(products);
149
const productTitles = productEntries.map((p) => p.data.name as string);
@@ -180,6 +180,7 @@ export async function getRSSItems({
180
categories: productTitles,
181
link: `/changelog/${note.id}/`,
182
customData: `<product>${productTitles.at(0)}</product>`,
183
+ scheduled: scheduled,
184
};
185
}),
186
);
0 commit comments