Skip to content

Commit

Permalink
Fix parent track send check in GetAllTrackSendDestinations function
Browse files Browse the repository at this point in the history
  • Loading branch information
ak5k committed Mar 25, 2024
1 parent 1145ea6 commit 0b33eb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reallm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ std::vector<MediaTrack*> 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
Expand Down

0 comments on commit 0b33eb4

Please sign in to comment.