summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorLuciano Iam <lucianito@gmail.com>2020-04-12 10:37:09 +0200
committerRobin Gareus <robin@gareus.org>2020-04-13 16:29:38 +0200
commite7f22cf98942372a33d68d6b5806abfcf1da8ee9 (patch)
tree14ffb78f957e417e5a7cfd9ebb208832560e5471 /share
parent17cbd6560315fe6c466635ae84f2dce18c488c9c (diff)
WebSockets: rename resource index.json to more meaningful surfaces.json
Diffstat (limited to 'share')
-rw-r--r--share/web_surfaces/shared/ardour.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/web_surfaces/shared/ardour.js b/share/web_surfaces/shared/ardour.js
index 4c33a95950..f9fc83f290 100644
--- a/share/web_surfaces/shared/ardour.js
+++ b/share/web_surfaces/shared/ardour.js
@@ -33,7 +33,7 @@ export class Ardour {
}
async getAvailableSurfaces () {
- const response = await fetch('/index.json');
+ const response = await fetch('/surfaces.json');
if (response.status == 200) {
return await response.json();