summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/client/ClientStore.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp
index 20928d33..71e28c09 100644
--- a/src/client/ClientStore.cpp
+++ b/src/client/ClientStore.cpp
@@ -365,11 +365,12 @@ ClientStore::set_property(const Raul::URI& subject_uri,
}
} else {
SharedPtr<PluginModel> plugin = _plugin(subject_uri);
- if (plugin)
+ if (plugin) {
plugin->set_property(predicate, value);
- else
+ } else if (predicate != _uris.ingen_activity) {
_log.warn(Raul::fmt("Property <%1%> for unknown object %2%\n")
% predicate.c_str() % subject_uri.c_str());
+ }
}
}