This commit is contained in:
2023-08-29 20:06:52 +02:00
parent 7c2eec4446
commit 25702c073a
225 changed files with 1071 additions and 808 deletions

View File

@@ -1,4 +1,4 @@
exports.__esModule = true;
Object.defineProperty(exports, "__esModule", { value: true });
module.exports = function (ActionAPI) {
ActionAPI.handle(function (properties, status, deck) {
var connectionID = properties.connectionID != undefined && properties.connectionID.length > 0
@@ -10,7 +10,8 @@ module.exports = function (ActionAPI) {
if (connection && connection.instance) {
connection.instance
.setAutoLive(state == 'on')
.then(function () { return status("Autolive state has been set to " + state); })["catch"](function (error) { return status(error, 'error'); });
.then(function () { return status("Autolive state has been set to ".concat(state)); })
.catch(function (error) { return status(error, 'error'); });
}
}
else