Skip to content
Snippets Groups Projects
Unverified Commit 8329f312 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

sipcall: fix getVideoReceiver

It was always returning nullptr

Change-Id: I122db004d63b7844b05589f7de596d50140a1795
parent 7852d431
Branches
No related tags found
No related merge requests found
...@@ -152,7 +152,7 @@ public: ...@@ -152,7 +152,7 @@ public:
{ {
auto const& videoRtp = getVideoRtp(); auto const& videoRtp = getVideoRtp();
if (videoRtp) if (videoRtp)
videoRtp->getVideoReceive().get(); return videoRtp->getVideoReceive().get();
return nullptr; return nullptr;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment