Skip to content

Commit ef9b7fa

Browse files
author
Oleksandr Shvetsov
committed
SDK version updated to 2.13.8
1 parent bbefccb commit ef9b7fa

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
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/quickblox@2.13.7/quickblox.min.js"></script>
19+
<script src="https://unpkg.com/quickblox@2.13.8/quickblox.min.js"></script>
2020
```
2121

2222
## Bower and RequireJS

quickblox.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49252,7 +49252,7 @@ MessageProxy.prototype = {
4925249252
* */
4925349253

4925449254
if (params && params.chat_dialog_ids && Utils.isArray(params.chat_dialog_ids)) {
49255-
params.chat_dialog_ids = params.chat_dialog_ids.join(', ');
49255+
params.chat_dialog_ids = params.chat_dialog_ids.join();
4925649256
}
4925749257

4925849258
this.service.ajax({
@@ -53644,8 +53644,8 @@ module.exports = StreamManagement;
5364453644
*/
5364553645

5364653646
var config = {
53647-
version: '2.13.7',
53648-
buildNumber: '1100',
53647+
version: '2.13.8',
53648+
buildNumber: '1101',
5364953649
creds: {
5365053650
appId: '',
5365153651
authKey: '',

quickblox.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/modules/chat/qbMessage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ MessageProxy.prototype = {
127127
* */
128128

129129
if (params && params.chat_dialog_ids && Utils.isArray(params.chat_dialog_ids)) {
130-
params.chat_dialog_ids = params.chat_dialog_ids.join(', ');
130+
params.chat_dialog_ids = params.chat_dialog_ids.join();
131131
}
132132

133133
this.service.ajax({

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.13.7',
16-
buildNumber: '1100',
15+
version: '2.13.8',
16+
buildNumber: '1101',
1717
creds: {
1818
appId: '',
1919
authKey: '',

0 commit comments

Comments
 (0)