diff --git a/src/scripts/scrape-data/handiwork-parse.ts b/src/scripts/scrape-data/handiwork-parse.ts index 0a1e81e..c2838bc 100644 --- a/src/scripts/scrape-data/handiwork-parse.ts +++ b/src/scripts/scrape-data/handiwork-parse.ts @@ -38,7 +38,7 @@ export default async function getHandiworkInformation(url: str fillWithPrefixes(hw, thread.prefixes); // Fetch info from first post - const post = thread.posts.find(p => p.id === 1); + const post = await thread.getPost(1); fillWithPostData(hw, post.body); return hw;