mirror of
				https://github.com/SillyTavern/SillyTavern.git
				synced 2025-06-05 21:59:27 +02:00 
			
		
		
		
	fix bug with function call context
This commit is contained in:
		@@ -53,7 +53,7 @@ class EdgeTtsProvider {
 | 
			
		||||
 | 
			
		||||
        $('#edge_tts_rate').val(this.settings.rate || 0);
 | 
			
		||||
        $('#edge_tts_rate_output').text(this.settings.rate || 0);
 | 
			
		||||
        $('#edge_tts_rate').on("input",this.onSettingsChange)
 | 
			
		||||
        $('#edge_tts_rate').on("input", () => {this.onSettingsChange()})
 | 
			
		||||
        this.checkReady()
 | 
			
		||||
 | 
			
		||||
        console.info("Settings loaded")
 | 
			
		||||
 
 | 
			
		||||
@@ -88,7 +88,7 @@ class ElevenLabsTtsProvider {
 | 
			
		||||
    async onConnectClick() {
 | 
			
		||||
        // Update on Apply click
 | 
			
		||||
        return await this.updateApiKey().catch( (error) => {
 | 
			
		||||
            throw error
 | 
			
		||||
            toastr.error(`ElevenLabs: ${error}`)
 | 
			
		||||
        })
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -63,7 +63,7 @@ class SileroTtsProvider {
 | 
			
		||||
        }, 2000);
 | 
			
		||||
 | 
			
		||||
        $('#silero_tts_endpoint').val(this.settings.provider_endpoint)
 | 
			
		||||
        $('#silero_tts_endpoint').on("input", this.onSettingsChange)
 | 
			
		||||
        $('#silero_tts_endpoint').on("input", () => {this.onSettingsChange()})
 | 
			
		||||
 | 
			
		||||
        this.checkReady()
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -146,8 +146,8 @@ class SystemTtsProvider {
 | 
			
		||||
        $('#system_tts_pitch').val(this.settings.pitch || this.defaultSettings.pitch);
 | 
			
		||||
 | 
			
		||||
        // Trigger updates
 | 
			
		||||
        $('#system_tts_rate').on("input", this.onSettingsChange)
 | 
			
		||||
        $('#system_tts_rate').on("input", this.onSettingsChange)
 | 
			
		||||
        $('#system_tts_rate').on("input", () =>{this.onSettingsChange()})
 | 
			
		||||
        $('#system_tts_rate').on("input", () => {this.onSettingsChange()})
 | 
			
		||||
 | 
			
		||||
        $('#system_tts_pitch_output').text(this.settings.pitch);
 | 
			
		||||
        $('#system_tts_rate_output').text(this.settings.rate);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user