Skip to content

Commit

Permalink
fix node version
Browse files Browse the repository at this point in the history
  • Loading branch information
feruzm committed Oct 27, 2023
1 parent 2c56c1f commit ac0af8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10
node-version: 12
- run: yarn
- run: yarn test
- uses: JS-DevTools/npm-publish@v1
Expand Down
2 changes: 1 addition & 1 deletion src/methods/clean-reply.method.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function cleanReply(s: string): string {
.filter(item => item.toLowerCase().includes('posted via [neoxian') === false)
.filter(item => item.toLowerCase().includes('posted with [stemgeeks') === false)
.filter(item => item.toLowerCase().includes('posted using [bilpcoin') === false)
.filter(item => item.toLowerCase().includes('Posted Using [InLeo') === false)
.filter(item => item.toLowerCase().includes('posted using [inleo') === false)
.filter(item => item.toLowerCase().includes('<center><sub>[posted using aeneas.blog') === false)
.filter(item => item.toLowerCase().includes('<center><sub>posted via [proofofbrain.io') === false)
.filter(item => item.toLowerCase().includes('<center>posted on [hypnochain') === false)
Expand Down

0 comments on commit ac0af8e

Please sign in to comment.