From 78104373cb65516bddd2328d8955dda6b8df8a23 Mon Sep 17 00:00:00 2001 From: Stefan Radomski Date: Thu, 28 Apr 2016 10:02:51 +0200 Subject: Fixed duplicate error.execution with missing DOM support in Lua --- src/uscxml/plugins/datamodel/lua/LuaDataModel.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/uscxml/plugins/datamodel/lua/LuaDataModel.cpp b/src/uscxml/plugins/datamodel/lua/LuaDataModel.cpp index 63314e1..c01d4d1 100644 --- a/src/uscxml/plugins/datamodel/lua/LuaDataModel.cpp +++ b/src/uscxml/plugins/datamodel/lua/LuaDataModel.cpp @@ -267,7 +267,10 @@ void LuaDataModel::setEvent(const Event& event) { ERROR_EXECUTION_THROW(e.what()); } } else { - ERROR_EXECUTION_THROW("No DOM support in Lua datamodel"); + // some error events have a dom node attached - do not throw for them + if (!nameMatch("error.*", event.name)) { + ERROR_EXECUTION_THROW("No DOM support in Lua datamodel"); + } } } else if (event.content.length() > 0) { // _event.data is a string or JSON -- cgit v0.12