From 6ffaee0b45cdc427c4e5138b4ad4664f6a68291d Mon Sep 17 00:00:00 2001 From: Ylva Selling Date: Fri, 15 Nov 2024 16:39:32 +0100 Subject: [PATCH] Make uri validation work again --- src/properties/propertyowner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/properties/propertyowner.cpp b/src/properties/propertyowner.cpp index 0ee6dd5df7..cae9dca8a4 100644 --- a/src/properties/propertyowner.cpp +++ b/src/properties/propertyowner.cpp @@ -167,7 +167,7 @@ std::string PropertyOwner::uri() const { currentOwner = currentOwner->owner(); } // If the uri hasn't been sent at this point it is not valid, so send an empty string - return identifier; + return ""; } bool PropertyOwner::hasProperty(const std::string& uri) const {