Skip to content

Commit f2ef8c6

Browse files
committed
.
1 parent 9353683 commit f2ef8c6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

OpenFlow/src/public/WebSocketClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ module openflow {
9595
var q: SigninMessage = new SigninMessage();
9696
this.getJSON("/jwt", async (error: any, data: any) => {
9797
try {
98-
if (data === null || data === undefined) {
98+
if (data !== null && data !== undefined) {
9999
if ((data.jwt === null || data.jwt === undefined || data.jwt.trim() === "") ||
100100
(data.rawAssertion === null || data.rawAssertion === undefined || data.rawAssertion.trim() === "")) {
101101
data = null;

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.131
1+
0.0.132

0 commit comments

Comments
 (0)