From 2790e6d9ade2e6db8e5844e688c73ba6064946bd Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Tue, 20 Aug 2024 08:36:24 -0400 Subject: [PATCH] fix linting error from PR --- lib/tasks/tts-task.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/tts-task.js b/lib/tasks/tts-task.js index 4c96fded..1936f5dd 100644 --- a/lib/tasks/tts-task.js +++ b/lib/tasks/tts-task.js @@ -19,7 +19,7 @@ class TtsTask extends Task { super.exec(cs); if (cs.synthesizer) { this.options = {...cs.synthesizer.options, ...this.options}; - this.data.synthesizer = this.data.synthesizer || {} + this.data.synthesizer = this.data.synthesizer || {}; for (const k in cs.synthesizer) { const newValue = this.data.synthesizer && this.data.synthesizer[k] !== undefined ? this.data.synthesizer[k] :