summaryrefslogtreecommitdiff
path: root/share/web_surfaces/shared/ardour.js
diff options
context:
space:
mode:
authorLuciano Iam <lucianito@gmail.com>2020-04-11 17:49:34 +0200
committerRobin Gareus <robin@gareus.org>2020-04-11 22:30:41 +0200
commit5c78c85ef527fde08a009e813c1491a5e4e95ecb (patch)
tree31bd49f88bd05e97b27dbb7f8074508b5db17950 /share/web_surfaces/shared/ardour.js
parent02cdd5b52d208eaf89ae5a82937acea413cbac3d (diff)
WebSockets: rename Channel to ArdourMessageChannel
Diffstat (limited to 'share/web_surfaces/shared/ardour.js')
-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 8da2c0679c..99342c650f 100644
--- a/share/web_surfaces/shared/ardour.js
+++ b/share/web_surfaces/shared/ardour.js
@@ -16,12 +16,12 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-import { Channel } from './channel.js';
+import { ArdourMessageChannel } from './channel.js';
export class Ardour {
constructor () {
- this.channel = new Channel(location.host);
+ this.channel = new ArdourMessageChannel(location.host);
}
async open () {