Skip to content

Commit

Permalink
chore: release v1.14.41
Browse files Browse the repository at this point in the history
we made sure, that controller does not send stopInstance message anymore
  • Loading branch information
foxriver76 committed Jun 5, 2021
1 parent 3336743 commit 9983fcb
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ by ioBroker, when you have a running 'dummy' program on the CCU which depends on
### __WORK IN PROGRESS__
-->

### 1.14.40 (2021-06-05)
* (foxriver76) make sure, that controller does not send stopInstance message anymore
### 1.14.41 (2021-06-05)
* (foxriver76) we made sure, that controller does not send stopInstance message anymore

### 1.14.39 (2021-06-04)
* (foxriver76) remove the stopInstance message handling and put everything in unload
Expand Down
24 changes: 12 additions & 12 deletions io-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@
"es": "Conecta los Procesos de Interfaz HomeMatic (BidCos-Services, Homegear y CUxD) a través de XML-RPC o BIN-RPC a ioBroker",
"pl": "Łączy procesy HomeMatic-Interface (BidCos-Services, Homegear i CUxD) za pośrednictwem XML-RPC lub BIN-RPC z ioBroker"
},
"version": "1.14.40",
"version": "1.14.41",
"news": {
"1.14.40": {
"en": "make sure, that controller does not send stopInstance message anymore",
"de": "Stellen Sie sicher, dass der Controller keine stopInstance-Nachricht mehr sendet",
"ru": "убедитесь, что этот контроллер больше не отправляет сообщение stopInstance",
"pt": "certifique-se de que o controlador não envia mais mensagem stopInstance",
"nl": "zorg ervoor dat die controller geen stopInstance-bericht meer verzendt",
"fr": "assurez-vous que ce contrôleur n'envoie plus de message stopInstance",
"it": "assicurati che il controller non invii più il messaggio stopInstance",
"es": "asegúrese de que el controlador ya no envíe el mensaje stopInstance",
"pl": "upewnij się, że kontroler nie wysyła już komunikatu stopInstance",
"zh-cn": "确保该控制器不再发送 stopInstance 消息"
"1.14.41": {
"en": "we made sure, that controller does not send stopInstance message anymore",
"de": "Wir haben sichergestellt, dass der Controller keine stopInstance-Nachricht mehr sendet",
"ru": "мы убедились, что этот контроллер больше не отправляет сообщение stopInstance",
"pt": "certificamo-nos de que o controlador não envia mais mensagem stopInstance",
"nl": "we hebben ervoor gezorgd dat de controller geen stopInstance-bericht meer verzendt",
"fr": "nous nous sommes assurés que ce contrôleur n'envoie plus de message stopInstance",
"it": "ci siamo assicurati che quel controller non inviasse più il messaggio stopInstance",
"es": "nos aseguramos de que el controlador ya no envíe el mensaje stopInstance",
"pl": "upewniliśmy się, że kontroler nie wysyła już komunikatu stopInstance",
"zh-cn": "我们确保,该控制器不再发送 stopInstance 消息"
},
"1.14.39": {
"en": "remove the stopInstance message handling and put everything in unload\nremoved the white background by some icons",
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ function startAdapter(options) {
message: async obj => {
adapter.log.debug(`[MSSG] Received: ${JSON.stringify(obj)}`);

if (obj.command === undefined || obj.command === null || !obj.message.params) {
if (obj.command === undefined || obj.command === null) {
adapter.log.warn(`Received invalid command via message "${obj.command}" "${obj.message.ID}" from ${obj.from}`);
if (obj.callback) {
adapter.sendTo(obj.from, obj.command, {error: 'Invalid command'}, obj.callback);
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.hm-rpc",
"version": "1.14.40",
"version": "1.14.41",
"description": "Connects HomeMatic Interface-Processes (BidCos-Services, Homegear and CUxD) via XML-RPC or BIN-RPC to ioBroker",
"author": {
"name": "hobbyquaker",
Expand Down

0 comments on commit 9983fcb

Please sign in to comment.