From 377c84c146bee3e9ad110adf23eae7950efdb501 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=B0=9B?= Date: Fri, 12 May 2023 20:27:39 +0800 Subject: [PATCH] fix: double quote error --- plugin/Trans.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin/Trans.lua b/plugin/Trans.lua index 3b00025..e78a7e0 100644 --- a/plugin/Trans.lua +++ b/plugin/Trans.lua @@ -31,5 +31,6 @@ local f = system == 'linux' and 'echo %q | festival --tts' string.play = function(self) - fn.jobstart(f:format(self)) + local s = string.gsub(self, "\"", " ") + fn.jobstart(f:format(s)) end