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