diff options
Diffstat (limited to 'lib/block_props.cpp')
-rw-r--r-- | lib/block_props.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/block_props.cpp b/lib/block_props.cpp index 3fb381e..a85d948 100644 --- a/lib/block_props.cpp +++ b/lib/block_props.cpp @@ -24,7 +24,7 @@ void BlockActor::handle_prop_access( //call into the handler overload to do the property access try { - reply.value = block_ptr->_handle_prop_access(message.key, message.value, message.set); + reply.value = data->block->_handle_prop_access(message.key, message.value, message.set); } catch (const std::exception &e) { |