Skip to content

Commit

Permalink
fix: issue 493 – filter options usage
Browse files Browse the repository at this point in the history
  • Loading branch information
olexandr13 committed Feb 26, 2025
1 parent 3ee1747 commit 4b14f6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class Client {
try {
const filterPipe = this.pipes.find(p => p.constructor.name.toLowerCase() === `${pipe.toLowerCase()}pipe`);

if (!filterPipe.isEnabled) {
if (!filterPipe?.isEnabled) {
// TODO:for the future for the another pipes
console.warn(
APP_PREFIX,
Expand Down
2 changes: 2 additions & 0 deletions lib/pipe/html.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ class HtmlPipe {
// empty
}

async prepareRun() {}

updateRun() {
// empty
}
Expand Down

0 comments on commit 4b14f6d

Please sign in to comment.