From 06799e0daaefb4e9a0b3d7c4daf50444d6f24023 Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Fri, 20 Jun 2025 14:25:32 +0200 Subject: [PATCH] Small xml fix --- src/plugins/xml.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugins/xml.lua b/src/plugins/xml.lua index f1f9147..20a22da 100644 --- a/src/plugins/xml.lua +++ b/src/plugins/xml.lua @@ -95,6 +95,9 @@ local function findExpressions(text) end local function convertValue(value, scope) + if type(value) ~= "string" then + return value + end if value:sub(1,1) == "\"" and value:sub(-1) == "\"" then value = value:sub(2, -2) end