diff --git a/src/opm/output/eclipse/Summary.cpp b/src/opm/output/eclipse/Summary.cpp index 1fbd2cad9..2d1c5e813 100644 --- a/src/opm/output/eclipse/Summary.cpp +++ b/src/opm/output/eclipse/Summary.cpp @@ -1891,6 +1891,9 @@ void updateValue(const Opm::EclIO::SummaryNode& node, const double value, Opm::S else if (node.category == Opm::EclIO::SummaryNode::Category::Group) st.update_group_var(node.wgname, node.keyword, value); + else if (node.category == Opm::EclIO::SummaryNode::Category::Node) + st.update_group_var(node.wgname, node.keyword, value); + else st.update(node.unique_key(), value); }