We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fecde98 commit 06799e0Copy full SHA for 06799e0
1 file changed
src/plugins/xml.lua
@@ -95,6 +95,9 @@ local function findExpressions(text)
95
end
96
97
local function convertValue(value, scope)
98
+ if type(value) ~= "string" then
99
+ return value
100
+ end
101
if value:sub(1,1) == "\"" and value:sub(-1) == "\"" then
102
value = value:sub(2, -2)
103
0 commit comments