1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00

Device API: fixed missing channel sink removal in case of MIMO

This commit is contained in:
f4exb 2020-07-13 03:42:58 +02:00
parent c8ec9e4ea8
commit 83183b8a6a

View File

@ -102,6 +102,8 @@ void DeviceAPI::removeChannelSink(BasebandSampleSink* sink, int streamIndex)
if (m_deviceSourceEngine) {
m_deviceSourceEngine->removeSink(sink);
} else if (m_deviceMIMOEngine) {
m_deviceMIMOEngine->removeChannelSink(sink);
}
}