The proper id / identity fix for rocksdb

This commit is contained in:
Thomas Krijnen
2026-04-22 18:11:01 +02:00
parent 14e9846e35
commit c42a7f32d0
3 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -2957,7 +2957,7 @@ attribute_value instance_data::get_attribute_value(size_t index) const
return nullptr;
}
}, file_->storage_);
return attribute_value(storage, declaration_->as_entity() ? id_ : identity_, declaration_, (uint8_t)index);
return attribute_value(storage, id_ ? id_ : identity_, declaration_, (uint8_t)index);
}
}