Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ronny1982 committed Jul 27, 2024
1 parent 1333c1c commit 85eef8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/mjs/engine/Connectors.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default class Connectors {
let uri = new URL( request.url );
this._list.find( connector => connector.id === uri.hostname ).handleConnectorURI( uri )
.then( buffer => callback( buffer ) )
.catch( _ => {
.catch( () => {
//console.error( error, payload );
callback( undefined );
} );
Expand Down

0 comments on commit 85eef8a

Please sign in to comment.