From 16847ce6f76d5b7f686b4eedcfe0e5b55151afce Mon Sep 17 00:00:00 2001 From: duffyduck Date: Fri, 10 Apr 2026 00:27:55 +0200 Subject: [PATCH] fix: TTS toggle global above engine selector, health check /docs Co-Authored-By: Claude Opus 4.6 (1M context) --- diagnostic/index.html | 10 ++++++---- xtts/bridge.js | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) 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", () => {