summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
Diffstat (limited to 'share')
-rw-r--r--share/web_surfaces/shared/ardour.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/web_surfaces/shared/ardour.js b/share/web_surfaces/shared/ardour.js
index 800e9ffe7f..7a7fb8bb30 100644
--- a/share/web_surfaces/shared/ardour.js
+++ b/share/web_surfaces/shared/ardour.js
@@ -58,7 +58,7 @@ class BaseArdourClient {
}
};
- this._connect();
+ await this._connect();
}
disconnect () {
@@ -93,7 +93,7 @@ class BaseArdourClient {
}
async _sendRecvSingle (node, addr, val) {
- return await this._sendAndReceive (node, addr, val)[0];
+ return (await this._sendAndReceive (node, addr, val))[0];
}
_onChannelMessage (msg) {