diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server/PortImpl.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/server/PortImpl.cpp b/src/server/PortImpl.cpp index aed67ec3..c9afd307 100644 --- a/src/server/PortImpl.cpp +++ b/src/server/PortImpl.cpp @@ -380,7 +380,9 @@ PortImpl::monitor(Context& context, bool send_now) _frames_since_monitor += context.nframes(); const bool time_to_send = send_now || _frames_since_monitor >= period; - if (!time_to_send) { + const bool is_sequence = (_type.id() == PortType::ATOM && + _buffer_type == _bufs.uris().atom_Sequence); + if (!time_to_send && !(is_sequence && _monitored)) { return; } |