Skip to content

Commit

Permalink
rename message constructor arg
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Dec 13, 2024
1 parent 8070ea1 commit 997c39a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/node_modules/pouchdb-errors/src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class PouchError extends Error {
constructor(status, name, reason) {
super(reason);
constructor(status, name, message) {
super(message);
this.status = status;
this.name = name;
this.error = true;
Expand Down

0 comments on commit 997c39a

Please sign in to comment.