소스 검색

Fix incorrect (lack of) assignment

master
Lyubomir Marinov 9 년 전
부모
커밋
dabb772851
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      modules/xmpp/xmpp.js

+ 1
- 1
modules/xmpp/xmpp.js 파일 보기

@@ -156,7 +156,7 @@ XMPP.prototype._connect = function (jid, password) {
156 156
 
157 157
     this.anonymousConnectionFailed = false;
158 158
     this.connectionFailed = false;
159
-    this.lastErrorMsg;
159
+    this.lastErrorMsg = undefined;
160 160
     this.connection.connect(jid, password,
161 161
         this.connectionHandler.bind(this, password));
162 162
 }

Loading…
취소
저장