mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Merge branch 'staging' into redesign-extension-manager
This commit is contained in:
@@ -262,13 +262,13 @@ class AllTalkTtsProvider {
|
|||||||
console.debug('AllTalkTTS: Settings loaded');
|
console.debug('AllTalkTTS: Settings loaded');
|
||||||
try {
|
try {
|
||||||
// Check if TTS provider is ready
|
// Check if TTS provider is ready
|
||||||
|
this.setupEventListeners();
|
||||||
|
this.updateLanguageDropdown();
|
||||||
await this.checkReady();
|
await this.checkReady();
|
||||||
await this.updateSettingsFromServer(); // Fetch dynamic settings from the TTS server
|
await this.updateSettingsFromServer(); // Fetch dynamic settings from the TTS server
|
||||||
await this.fetchTtsVoiceObjects(); // Fetch voices only if service is ready
|
await this.fetchTtsVoiceObjects(); // Fetch voices only if service is ready
|
||||||
await this.fetchRvcVoiceObjects(); // Fetch RVC voices
|
await this.fetchRvcVoiceObjects(); // Fetch RVC voices
|
||||||
this.updateNarratorVoicesDropdown();
|
this.updateNarratorVoicesDropdown();
|
||||||
this.updateLanguageDropdown();
|
|
||||||
this.setupEventListeners();
|
|
||||||
this.applySettingsToHTML();
|
this.applySettingsToHTML();
|
||||||
updateStatus('Ready');
|
updateStatus('Ready');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
@@ -158,7 +158,8 @@ async function tryReadImage(imgPath, crop) {
|
|||||||
return image;
|
return image;
|
||||||
}
|
}
|
||||||
// If it's an unsupported type of image (APNG) - just read the file as buffer
|
// If it's an unsupported type of image (APNG) - just read the file as buffer
|
||||||
catch {
|
catch (error) {
|
||||||
|
console.log(`Failed to read image: ${imgPath}`, error);
|
||||||
return fs.readFileSync(imgPath);
|
return fs.readFileSync(imgPath);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user