diff options
-rw-r--r-- | src/uscxml/plugins/datamodel/lua/LuaDataModel.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
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 |