diff options
| author | historia <historiavg@proton.me> | 2026-08-28 18:33:04 -0400 |
|---|---|---|
| committer | historia <historiavg@proton.me> | 2026-08-28 18:33:04 -0400 |
| commit | 3c9b7e12029f6accdaabb6f60e01bce88156db98 (patch) | |
| tree | baad0224ca9e17b564f79191be62b8e7bb317d8d /app | |
| parent | 1487796d74a7b171f2c53c4212e446759d3a4bec (diff) | |
| download | tts-audiobook-generator-3c9b7e12029f6accdaabb6f60e01bce88156db98.tar.gz | |
fix: better error when no .wav available to clone
Diffstat (limited to 'app')
| -rw-r--r-- | app/ui/hub.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/ui/hub.py b/app/ui/hub.py index 5c312cf..0471711 100644 --- a/app/ui/hub.py +++ b/app/ui/hub.py @@ -1195,9 +1195,9 @@ def _audiocpp_fields(stdscr, api_url: Optional[str] = None, tui.form); validate's echo calls it without one. """ if local: - return ("No .wav files available to clone — run Configure " - "Backends → audio.cpp and add voices to its " - "voice-clone .wav directory.") + return ("No .wav files available to clone\n" + "Go to Configure Backends → Configure audio.cpp and " + "set a voice clone directory.") return ("No .wav files available to clone — the audio.cpp server " f"at {url} hosts none. Configure its voice-clone .wav " "directory on that machine.") |
