We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 784c01e commit b2f5230Copy full SHA for b2f5230
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "reactivexcomponent.js",
3
- "version": "7.0.6",
+ "version": "7.0.7",
4
"description": "Javascript reactive client API for XComponent",
5
"module": "dist/index.js",
6
"main": "dist/index.js",
src/communication/WebSocketSubscriber.ts
@@ -265,6 +265,9 @@ export class WebSocketSubscriber {
265
if (raw.$values) {
266
items = raw.$values;
267
}
268
+ else {
269
+ items = raw;
270
+ }
271
} catch (e) {
272
items = b64Data;
273
0 commit comments