From a3a50c769d76538177036892c0e431fd7e26f6fc Mon Sep 17 00:00:00 2001 From: mallowwww Date: Thu, 14 Aug 2025 23:48:08 -0500 Subject: [PATCH] Fix crash when node has no value --- src/plugins/xml.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/xml.lua b/src/plugins/xml.lua index f1f9147..daecf3b 100644 --- a/src/plugins/xml.lua +++ b/src/plugins/xml.lua @@ -95,6 +95,7 @@ local function findExpressions(text) end local function convertValue(value, scope) + if not value then return value end if value:sub(1,1) == "\"" and value:sub(-1) == "\"" then value = value:sub(2, -2) end -- 2.49.1