quickblox 2.17.15-logger → 2.17.16-logger

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/qbConfig.js CHANGED
@@ -12,7 +12,7 @@
12
12
  */
13
13
 
14
14
  var config = {
15
- version: '2.17.15-logger',
15
+ version: '2.17.16-logger',
16
16
  buildNumber: '1161',
17
17
  creds: {
18
18
  'appId': 0,
package/src/qbMain.js CHANGED
@@ -269,11 +269,11 @@ QuickBlox.prototype = {
269
269
  },
270
270
 
271
271
  getChat: function() {
272
- return this.chat;
272
+ return QB.chat;
273
273
  },
274
274
 
275
275
  getLogger: function() {
276
- return this.chat? this.chat.onLogListener: null;
276
+ return QB.chat? QB.chat.onLogListener: null;
277
277
  }
278
278
 
279
279
  };