fix: double quote error

This commit is contained in:
小尛 2023-05-12 20:27:39 +08:00
parent ba08913b1e
commit 377c84c146

View File

@ -31,5 +31,6 @@ local f =
system == 'linux' and 'echo %q | festival --tts' system == 'linux' and 'echo %q | festival --tts'
string.play = function(self) string.play = function(self)
fn.jobstart(f:format(self)) local s = string.gsub(self, "\"", " ")
fn.jobstart(f:format(s))
end end