소스 검색

Check also sticky threads in news

ghorsington 5 년 전
부모
커밋
9b2e117e8d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      bot/src/commands/forums_news_checker.ts

+ 1 - 1
bot/src/commands/forums_news_checker.ts

@@ -63,7 +63,7 @@ async function checkFeeds() {
 
     let forumThreads = await forumClient.getForumThreads(NEWS_FORUM_ID);
 
-    for (let thread of forumThreads.threads) {
+    for (let thread of [...forumThreads.threads, ...forumThreads.sticky]) {
         let firstPost = await forumClient.getPost(thread.first_post_id);
 
         let contents = bbCodeToMarkdown(firstPost.message);