Skip to content

Commit

Permalink
update: 実験的に Zenn Publication のブログをいくつか追加
Browse files Browse the repository at this point in the history
  • Loading branch information
yamadashy committed Jul 26, 2023
1 parent eee1374 commit d0c4c7c
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ https://yamadashy.github.io/tech-blog-rss-feed/

- その企業の取り組みでないものが多く投稿される可能性があるブログ
- テック系メディア
- Qiita Organization など、組織として投稿しているかの線引が曖昧なもの
- Qiita Organization や Zenn Publication など、組織として投稿しているかの線引が曖昧なものは、投稿内容を見て検討します
- 記事が自社製品の紹介のみ
- 日本語以外の言語で書かれている記事が多いブログ

Expand Down
4 changes: 3 additions & 1 deletion src/feed/utils/feed-crawler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ export class FeedCrawler {
* フィード情報のチェック
*/
public static validateFeedInfoList(feedInfoList: FeedInfo[]) {
const allLabels = feedInfoList.map((feedInfo) => feedInfo.label);
const allLabels = feedInfoList.map((feedInfo) => {
return feedInfo.label + ':' + feedInfo.flags?.map((flag: symbol) => flag.toString()).join(',');
});
const allUrls = feedInfoList.map((feedInfo) => feedInfo.url);

const labelSet = new Set<string>();
Expand Down
Loading

0 comments on commit d0c4c7c

Please sign in to comment.