@zeke-02/tinfoil 0.0.6 → 0.0.7
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.
|
@@ -124,6 +124,7 @@ export class SecureClient {
|
|
|
124
124
|
}
|
|
125
125
|
catch (error) {
|
|
126
126
|
if (this.verificationDocument) {
|
|
127
|
+
console.log("secure-client error", error);
|
|
127
128
|
const errorMessage = error.message;
|
|
128
129
|
if (errorMessage.includes("HPKE public key mismatch")) {
|
|
129
130
|
this.verificationDocument.steps.verifyHPKEKey = {
|
package/dist/secure-client.js
CHANGED
|
@@ -127,6 +127,7 @@ class SecureClient {
|
|
|
127
127
|
}
|
|
128
128
|
catch (error) {
|
|
129
129
|
if (this.verificationDocument) {
|
|
130
|
+
console.log("secure-client error", error);
|
|
130
131
|
const errorMessage = error.message;
|
|
131
132
|
if (errorMessage.includes("HPKE public key mismatch")) {
|
|
132
133
|
this.verificationDocument.steps.verifyHPKEKey = {
|