debugging

This commit is contained in:
Michael (GP) 2022-12-13 20:50:42 -05:00
parent 759b38adeb
commit babfed9906

6
bot.js
View File

@ -29,7 +29,7 @@ const download_image = async (url, image_path) => {
await postFeed(); await postFeed();
setInterval(async () => { setInterval(async () => {
console.log("Running postFeed()"); console.log("Starting postFeed()");
await postFeed(); await postFeed();
console.log("Completed postFeed()"); console.log("Completed postFeed()");
}, 60 * 60 * 1000); }, 60 * 60 * 1000);
@ -51,7 +51,7 @@ async function postFeed() {
let postDate = new Date(timeline.data[0].created_at); let postDate = new Date(timeline.data[0].created_at);
let count = 0; let count = 0;
feed.items.every(async (item) => { return feed.items.every(async (item) => {
let pubDate = new Date(item.pubDate); let pubDate = new Date(item.pubDate);
if (pubDate > postDate) { if (pubDate > postDate) {
@ -82,8 +82,6 @@ async function postFeed() {
return true; return true;
}); });
return true;
} }
const requestListener = function (req, res) { const requestListener = function (req, res) {