in api.js [107:125]
for await (const item of feed) {
const age = new Date().getTime() - new Date(item.webPublicationDate).getTime();
if (age < 28800000) { // Less than eight hours ago
if (!already_posted.includes(item.webUrl + '?CMP=aus_bsky') && !containsMatch(["ntwnfb", "nfbntw"], item.webUrl)) {
list_of_stories.push({
title: item.webTitle,
link: item.webUrl,
published : new Date(item.webPublicationDate).getTime()
})
}
}
}