Fix skip codeblocks setting not loading

This commit is contained in:
Cohee 2024-03-18 00:17:17 +02:00
parent 8ead536da6
commit 6e5f4a86ba
1 changed files with 1 additions and 0 deletions

View File

@ -616,6 +616,7 @@ function loadSettings() {
$('#tts_narrate_translated_only').prop('checked', extension_settings.tts.narrate_translated_only);
$('#tts_narrate_user').prop('checked', extension_settings.tts.narrate_user);
$('#tts_pass_asterisks').prop('checked', extension_settings.tts.pass_asterisks);
$('#tts_skip_codeblocks').prop('checked', extension_settings.tts.skip_codeblocks);
$('body').toggleClass('tts', extension_settings.tts.enabled);
}