Merge pull request #4 from Mallowwww/main

Fix crash when node has no value
This commit is contained in:
Robert Jelic
2025-08-25 06:09:56 +02:00
committed by GitHub

View File

@@ -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