Skip to content

Commit

Permalink
--filter option usage fix
Browse files Browse the repository at this point in the history
  • Loading branch information
olexandr13 committed Feb 26, 2025
1 parent ba2a2fe commit 90dc3c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,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 src/pipe/html.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ class HtmlPipe {
// empty
}

async prepareRun() {}

updateRun() {
// empty
}
Expand Down

0 comments on commit 90dc3c8

Please sign in to comment.