Skip to content

Commit 3d0878e

Browse files
version JS SDK 2.15.4 has created.
1 parent 38933e0 commit 3d0878e

File tree

6 files changed

+8
-18
lines changed

6 files changed

+8
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Check out our [API Reference](https://quickblox.github.io/quickblox-javascript-s
1616
## Dependencies for browser
1717

1818
```html
19-
<script src="https://unpkg.com/[email protected].3/quickblox.min.js"></script>
19+
<script src="https://unpkg.com/[email protected].4/quickblox.min.js"></script>
2020
```
2121

2222
## Bower and RequireJS

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "quickblox",
33
"description": "QuickBlox JavaScript SDK",
4-
"version": "2.15.3",
4+
"version": "2.15.4",
55
"homepage": "https://quickblox.com/developers/Javascript",
66
"main": "src/qbMain.js",
77
"license": "(Apache-2.0)",

quickblox.js

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53555,8 +53555,8 @@ module.exports = StreamManagement;
5355553555
*/
5355653556

5355753557
var config = {
53558-
version: '2.15.3',
53559-
buildNumber: '1148',
53558+
version: '2.15.4',
53559+
buildNumber: '1149',
5356053560
creds: {
5356153561
'appId': 0,
5356253562
'authKey': '',
@@ -53709,7 +53709,7 @@ QuickBlox.prototype = {
5370953709
* @param {Object} configMap - Settings object for QuickBlox SDK.
5371053710
*/
5371153711
init: function(appIdOrToken, authKeyOrAppId, authSecret, accountKey, configMap) {
53712-
console.log('current platform: ', Utils.getEnv());
53712+
Utils.QBLog('current platform:',Utils.getEnv());
5371353713
if (typeof accountKey === 'string' && accountKey.length) {
5371453714
if (configMap && typeof configMap === 'object') {
5371553715
config.set(configMap);
@@ -54091,7 +54091,6 @@ ServiceProxy.prototype = {
5409154091
qbFetch(qbUrl, qbRequest)
5409254092
.then(function(response) {
5409354093
qbResponse = response;
54094-
console.log('qbProxy fetch then 1');
5409554094
if (qbRequest.method === 'GET' || qbRequest.method === 'POST'){
5409654095
var qbTokenExpirationDate = qbResponse.headers.get('qb-token-expirationdate');
5409754096
var headerHasToken = !(qbTokenExpirationDate === null ||
@@ -54115,10 +54114,6 @@ ServiceProxy.prototype = {
5411554114

5411654115
return ' ';
5411754116
}).then(function(body) {
54118-
//console.log('HTTP status code: ', qbResponse.headers.status);
54119-
//console.log('HTTP response: ', qbResponse);
54120-
console.log('qbProxy fetch then 2');
54121-
console.log('HTTP body: ', qbResponse);
5412254117
_requestCallback(null, qbResponse, body);
5412354118
}, function(error) {
5412454119
_requestCallback(error);

src/qbConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
*/
1313

1414
var config = {
15-
version: '2.15.3',
16-
buildNumber: '1149',
15+
version: '2.15.4',
16+
buildNumber: '1150',
1717
creds: {
1818
'appId': 0,
1919
'authKey': '',

src/qbMain.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ QuickBlox.prototype = {
3636
* @param {Object} configMap - Settings object for QuickBlox SDK.
3737
*/
3838
init: function(appIdOrToken, authKeyOrAppId, authSecret, accountKey, configMap) {
39-
console.log('current platform: ', Utils.getEnv());
39+
Utils.QBLog('current platform:',Utils.getEnv());
4040
if (typeof accountKey === 'string' && accountKey.length) {
4141
if (configMap && typeof configMap === 'object') {
4242
config.set(configMap);

src/qbProxy.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ ServiceProxy.prototype = {
139139
qbFetch(qbUrl, qbRequest)
140140
.then(function(response) {
141141
qbResponse = response;
142-
console.log('qbProxy fetch then 1');
143142
if (qbRequest.method === 'GET' || qbRequest.method === 'POST'){
144143
var qbTokenExpirationDate = qbResponse.headers.get('qb-token-expirationdate');
145144
var headerHasToken = !(qbTokenExpirationDate === null ||
@@ -163,10 +162,6 @@ ServiceProxy.prototype = {
163162

164163
return ' ';
165164
}).then(function(body) {
166-
//console.log('HTTP status code: ', qbResponse.headers.status);
167-
//console.log('HTTP response: ', qbResponse);
168-
console.log('qbProxy fetch then 2');
169-
console.log('HTTP body: ', qbResponse);
170165
_requestCallback(null, qbResponse, body);
171166
}, function(error) {
172167
_requestCallback(error);

0 commit comments

Comments
 (0)