Skip to content

Commit

Permalink
fix: include zxx (no linguistic content) language tweets
Browse files Browse the repository at this point in the history
  • Loading branch information
andylolz committed May 12, 2024
1 parent 85472c7 commit 5b7b8b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion output/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Proposed [Twitter community notes](https://twitter.com/i/communitynotes/download
if (item.deleted === 1) {
return false;
}
return (item.lang === undefined || item.lang === "en");
return (item.lang === undefined || ['en', 'zxx'].includes(item.lang));
});
}
},
Expand Down

0 comments on commit 5b7b8b3

Please sign in to comment.