We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69c2854 commit dff2efcCopy full SHA for dff2efc
1 file changed
OpenFlow/src/public/WebSocketClientService.ts
@@ -40,8 +40,8 @@ export class WebSocketClientService {
40
this.enable_entity_restriction = data.enable_entity_restriction;
41
this.enable_web_tours = data.enable_web_tours;
42
43
- this.collections_with_text_index = data.collections_with_text_index;
44
- this.timeseries_collections = data.timeseries_collections;
+ if (data.collections_with_text_index) this.collections_with_text_index = data.collections_with_text_index;
+ if (data.timeseries_collections) this.timeseries_collections = data.timeseries_collections;
45
46
47
if (NoderedUtil.IsNullUndefinded(WebSocketClient.instance)) {
0 commit comments