From ceb7721551b872b8c38e28b6e6b62d2afbeed006 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?= Date: Tue, 25 Jul 2017 14:26:10 +0200 Subject: [PATCH] Minor change on Stats.jsx to show the media codec name when using rtx --- app/lib/components/Stats.jsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/lib/components/Stats.jsx b/app/lib/components/Stats.jsx index e758cea..bac7601 100644 --- a/app/lib/components/Stats.jsx +++ b/app/lib/components/Stats.jsx @@ -184,6 +184,9 @@ export default class Stats extends React.Component block = audio; break; case 'video': + if (codec === 'rtx') + break; + block = video; break; }