mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
Merge pull request #67 from TriliumNext/fix/EtapiError-prototype
fix: set prototype
This commit is contained in:
commit
ade6d08ded
@ -17,11 +17,13 @@ class EtapiError extends Error {
|
|||||||
code: string;
|
code: string;
|
||||||
|
|
||||||
constructor(statusCode: number, code: string, message: string) {
|
constructor(statusCode: number, code: string, message: string) {
|
||||||
super();
|
super(message);
|
||||||
|
|
||||||
|
// Set the prototype explicitly.
|
||||||
|
Object.setPrototypeOf(this, EtapiError.prototype);
|
||||||
|
|
||||||
this.statusCode = statusCode;
|
this.statusCode = statusCode;
|
||||||
this.code = code;
|
this.code = code;
|
||||||
this.message = message;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user