We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2ef8c6 commit 603f53fCopy full SHA for 603f53f
2 files changed
OpenFlow/src/public/WebSocketClient.ts
@@ -95,9 +95,11 @@ module openflow {
95
var q: SigninMessage = new SigninMessage();
96
this.getJSON("/jwt", async (error: any, data: any) => {
97
try {
98
+ console.log(data);
99
if (data !== null && data !== undefined) {
100
if ((data.jwt === null || data.jwt === undefined || data.jwt.trim() === "") ||
101
(data.rawAssertion === null || data.rawAssertion === undefined || data.rawAssertion.trim() === "")) {
102
+ console.log("data.jwt or data.rawAssertion is null");
103
data = null;
104
}
105
VERSION
@@ -1 +1 @@
1
-0.0.132
+0.0.133
0 commit comments