diff --git a/diagnostic/index.html b/diagnostic/index.html index a79a365..6155652 100644 --- a/diagnostic/index.html +++ b/diagnostic/index.html @@ -401,6 +401,12 @@

Sprachausgabe

+ +
+ + +
+
@@ -426,10 +432,6 @@
-
- - -
diff --git a/xtts/bridge.js b/xtts/bridge.js index 0c6f8d6..12d271b 100644 --- a/xtts/bridge.js +++ b/xtts/bridge.js @@ -256,7 +256,7 @@ log(`RVS: ${RVS_HOST}:${RVS_PORT}`); // Warten bis XTTS API erreichbar ist function waitForXTTS(callback, attempts) { if (attempts <= 0) { log("XTTS API nicht erreichbar — starte trotzdem"); callback(); return; } - http.get(`${XTTS_API_URL}/`, (res) => { + http.get(`${XTTS_API_URL}/docs`, (res) => { log(`XTTS API erreichbar (HTTP ${res.statusCode})`); callback(); }).on("error", () => {