We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c05113e commit f221770Copy full SHA for f221770
src/TokenRevocationClient.js
@@ -60,6 +60,10 @@ export class TokenRevocationClient {
60
reject(Error(xhr.statusText + " (" + xhr.status + ")"));
61
}
62
};
63
+ xhr.onerror = () => {
64
+ Log.debug("TokenRevocationClient.revoke: Failed to connect to server.")
65
+ reject("Failed to connect to server");
66
+ };
67
68
var body = "client_id=" + encodeURIComponent(client_id);
69
if (client_secret) {
0 commit comments