mailsentry-auth 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/middleware.mjs +1 -1
- package/package.json +1 -1
package/dist/middleware.mjs
CHANGED
|
@@ -772,7 +772,7 @@ var AuthenticationHandler = class extends BaseMiddlewareHandler {
|
|
|
772
772
|
return this.allow();
|
|
773
773
|
} catch (error) {
|
|
774
774
|
console.log("JWT validation failed:", error instanceof Error ? error.message : "Unknown error");
|
|
775
|
-
return this.
|
|
775
|
+
return this.continue();
|
|
776
776
|
}
|
|
777
777
|
}
|
|
778
778
|
};
|
package/package.json
CHANGED