diff --git a/include/ableton/link/Controller.hpp b/include/ableton/link/Controller.hpp index 47d53b21..5c26aecd 100644 --- a/include/ableton/link/Controller.hpp +++ b/include/ableton/link/Controller.hpp @@ -598,13 +598,10 @@ class Controller void processPendingClientStates() { const auto clientState = buildMergedPendingClientState(); - if (clientState.timeline || clientState.startStopState) - { - mController.mIo->async([this, clientState]() { - mController.handleRtClientState(clientState); - mHasPendingClientStates = false; - }); - } + mController.mIo->async([this, clientState]() { + mController.handleRtClientState(clientState); + mHasPendingClientStates = false; + }); } Controller& mController;