This commit is contained in:
Matthias Koefferlein 2025-01-29 00:56:37 +01:00
parent f3bed8d4f2
commit d9233caa42
1 changed files with 5 additions and 1 deletions

View File

@ -495,7 +495,11 @@ private:
void set ()
{
m_object = db::object_with_properties<T> (*m_basic, m_basic.prop_id ());
if (! at_end ()) {
m_object = db::object_with_properties<T> (*m_basic, m_basic.prop_id ());
} else {
m_object = db::object_with_properties<T> ();
}
}
};