Skip to content
Snippets Groups Projects
Commit 886838fe authored by Sandro Weber's avatar Sandro Weber
Browse files

[HOTFIX] adjust old dependencies on protobuf formats

parent 3e9c6ab3
No related branches found
No related tags found
No related merge requests found
...@@ -11634,9 +11634,9 @@ ...@@ -11634,9 +11634,9 @@
} }
}, },
"nrp-jsproto": { "nrp-jsproto": {
"version": "1.1.1-alpha.10", "version": "1.1.1-alpha.20",
"resolved": "https://registry.npmjs.org/nrp-jsproto/-/nrp-jsproto-1.1.1-alpha.10.tgz", "resolved": "https://registry.npmjs.org/nrp-jsproto/-/nrp-jsproto-1.1.1-alpha.20.tgz",
"integrity": "sha512-KFe2AQuhtx4wD76PIzxlhKFXtWYeUtyqSkONA8nYvIV9HfG67q09Qcnzhl745jZHZHZMC03xj9QVEr0x5so8Cg==" "integrity": "sha512-n39H3PBdhA+ojWIRe43ZcSJEZeogGZ91o5beHKrLdbbjNGcduOAzUS75AYE2hQ0YbOWtGwNVDQL9LGHK0LZugQ=="
}, },
"nth-check": { "nth-check": {
"version": "1.0.2", "version": "1.0.2",
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
"jquery": "3.6.0", "jquery": "3.6.0",
"jszip": "3.2.0", "jszip": "3.2.0",
"mqtt": "4.3.5", "mqtt": "4.3.5",
"nrp-jsproto": "1.1.1-alpha.10", "nrp-jsproto": "1.1.1-alpha.20",
"protobufjs": "6.11.2", "protobufjs": "6.11.2",
"react": "^17.0.1", "react": "^17.0.1",
"react-bootstrap": "1.4.0", "react-bootstrap": "1.4.0",
......
...@@ -47,7 +47,7 @@ export default class MqttClientService extends EventEmitter { ...@@ -47,7 +47,7 @@ export default class MqttClientService extends EventEmitter {
console.info('MQTT message: [topic, payload, packet]'); console.info('MQTT message: [topic, payload, packet]');
console.info([topic, payload, packet]); console.info([topic, payload, packet]);
try { /*try {
if (topic.endsWith('/type')) { if (topic.endsWith('/type')) {
let msg = String(payload); let msg = String(payload);
console.info('"' + topic + '" message format = ' + msg); console.info('"' + topic + '" message format = ' + msg);
...@@ -60,7 +60,7 @@ export default class MqttClientService extends EventEmitter { ...@@ -60,7 +60,7 @@ export default class MqttClientService extends EventEmitter {
} }
catch (error) { catch (error) {
console.error(error); console.error(error);
} }*/
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment