Fixes #9
This pull request includes a change to the postArticles function in src/bot/post.js to ensure asynchronous processing of article data.
Changes to asynchronous processing:
src/bot/post.js: Modified the postArticles function to use async in the map callback and await the cleanTime function, ensuring that the delay is processed correctly before setting the URLs.
Fixes #9 This pull request includes a change to the
postArticles
function insrc/bot/post.js
to ensure asynchronous processing of article data.Changes to asynchronous processing:
src/bot/post.js
: Modified thepostArticles
function to useasync
in themap
callback andawait
thecleanTime
function, ensuring that the delay is processed correctly before setting the URLs.