You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"[getConvosAuthenticationHeaders] No App Check Token Available"
68
+
);
48
69
thrownewAuthenticationError(
49
70
"No App Check Token Available. This indicates that we believe the app is not running on an authentic build of our application on a device that has not been tampered with."
50
71
);
51
72
}
52
73
53
74
if(!areInboxesRestored){
75
+
logger.error("[getConvosAuthenticationHeaders] Inboxes not restored");
54
76
thrownewAuthenticationError(
55
77
"[getConvosAuthenticationHeaders] Inboxes not restored; cannot create headers"
56
78
);
57
79
}
58
80
59
81
if(!inboxClient){
82
+
logger.error(
83
+
"[getConvosAuthenticationHeaders] No inbox client found for account"
84
+
);
60
85
thrownewAuthenticationError(
61
86
"[getConvosAuthenticationHeaders] No inbox client found for account"
62
87
);
63
88
}
64
89
90
+
logger.debug(
91
+
"[getConvosAuthenticationHeaders] Signing app check token with installation key"
0 commit comments