Skip to content

Commit eaa9bc3

Browse files
committed
fix?
1 parent 641d5d5 commit eaa9bc3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/util/changelog.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export async function getRSSItems({
143143
}: GetRSSItemsOptions): Promise<Array<RSSFeedItem>> {
144144
return await Promise.all(
145145
notes.map(async (note) => {
146-
const { title, date, products } = note.data;
146+
const { title, date, products, scheduled } = note.data;
147147

148148
const productEntries = await getEntries(products);
149149
const productTitles = productEntries.map((p) => p.data.name as string);
@@ -180,6 +180,7 @@ export async function getRSSItems({
180180
categories: productTitles,
181181
link: `/changelog/${note.id}/`,
182182
customData: `<product>${productTitles.at(0)}</product>`,
183+
scheduled: scheduled,
183184
};
184185
}),
185186
);

0 commit comments

Comments
 (0)