diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/client/ClientStore.cpp | 5 |
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> |