diff --git a/daemon/call.c b/daemon/call.c index 69267e1ae..2d5273847 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -2972,7 +2972,10 @@ static int monologue_subscribe_request1(struct call_monologue *src_ml, struct ca codec_handlers_update(dst_media, src_media, flags, sp); - MEDIA_SET(dst_media, SEND); + if (MEDIA_ISSET(src_media, SEND)) + MEDIA_SET(dst_media, SEND); + else + MEDIA_CLEAR(dst_media, SEND); MEDIA_CLEAR(dst_media, RECV); __rtcp_mux_set(flags, dst_media);