From 0b33eb4bedf7642043544d7ee7642db8b2c369c5 Mon Sep 17 00:00:00 2001 From: ak5k <42914711+ak5k@users.noreply.github.com> Date: Mon, 25 Mar 2024 19:11:46 +0200 Subject: [PATCH] Fix parent track send check in GetAllTrackSendDestinations function --- src/reallm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reallm.cpp b/src/reallm.cpp index ead4821..2530e76 100644 --- a/src/reallm.cpp +++ b/src/reallm.cpp @@ -336,7 +336,7 @@ std::vector GetAllTrackSendDestinations(MediaTrack* sourceTrack) if (parentTrack != NULL) { // Check if the parent send is active - if (*(bool*)GetSetMediaTrackInfo(parentTrack, "B_MAINSEND", NULL)) + if (*(bool*)GetSetMediaTrackInfo(sourceTrack, "B_MAINSEND", NULL)) destinationTracks.push_back(parentTrack); } else