We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f647038 commit 577e96dCopy full SHA for 577e96d
virtual-things-adapter.js
@@ -1323,11 +1323,11 @@ class VirtualThingsDevice extends Device {
1323
1324
action.start();
1325
1326
- if (this.id.startsWith('virtual-things-custom-')){
+ if (this.id.startsWith('virtual-things-custom-')) {
1327
if (this.events.has(action.name)) {
1328
this.eventNotify(new Event(this,
1329
- action.name,
1330
- action.input));
+ action.name,
+ action.input));
1331
}
1332
action.finish();
1333
return Promise.resolve();
@@ -1642,7 +1642,7 @@ class VirtualThingsAdapter extends Adapter {
1642
1643
newDescr.properties.push(prop);
1644
1645
-
+
1646
for (const action of actions) {
1647
const act = {
1648
name: action.name,
0 commit comments