diff options
| -rw-r--r-- | index.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -33,12 +33,12 @@ async function run() { const pins = await getPins({ tag: 'linkblog' }); - if (pins.posts.length === 0) { + if (pins.length === 0) { console.error('No links to post'); return; } - const gemtext = internals.generateGemtext(pins.posts); + const gemtext = internals.generateGemtext(pins); const gemfile = resolve(join(__dirname, `linkblog-${internals.date}.gmi`)); await writeFile(gemfile, gemtext); await internals.exec(`blog --add ${gemfile}`); @@ -46,7 +46,7 @@ async function run() { await internals.exec(`blog --publish-archive ${internals.archiveUrl}`); await rm(gemfile); - for (const pin of pins.posts) { + for (const pin of pins) { await addPin({ url: pin.href, description: pin.description, |