Make property uri validation work again

This commit is contained in:
Ylva Selling
2024-11-15 16:56:55 +01:00
parent 6ffaee0b45
commit 4bc33368f6

View File

@@ -78,7 +78,7 @@ const std::string& Property::identifier() const {
std::string Property::uri() const {
const std::string& ownerUri = owner()->uri();
return !ownerUri.empty() ? std::format("{}.{}", ownerUri, _identifier) : _identifier;
return !ownerUri.empty() ? std::format("{}.{}", ownerUri, _identifier) : "";
}
std::any Property::get() const {