summaryrefslogtreecommitdiffstats
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/ClientStore.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp
index 6725d961..fb90f390 100644
--- a/src/client/ClientStore.cpp
+++ b/src/client/ClientStore.cpp
@@ -422,10 +422,9 @@ void
ClientStore::activity(const Path& path, const Atom& value)
{
SharedPtr<PortModel> port = PtrCast<PortModel>(_object(path));
- if (port)
+ if (port) {
port->signal_activity().emit(value);
- else
- LOG(error) << "Activity for non-existent port " << path << endl;
+ }
}
SharedPtr<PatchModel>