Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
drkron committed Oct 4, 2024
1 parent e06019f commit da0e7db
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion pc_capture/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

<link rel="icon" sizes="192x192" href="../../../images/webrtc-icon-192x192.png">
<link href="//fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="../../../css/main.css"/>
<link rel="stylesheet" href="css/main.css"/>

</head>
Expand Down
2 changes: 1 addition & 1 deletion pc_capture/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ function showRemoteStats(report) {
// }
} else if (stats.type === 'inbound-rtp') {
if (stats.remoteId != undefined) {
const remoteOutboundRtp = stats.get(report.remoteId);
const remoteOutboundRtp = report.get(stats.remoteId);
console.log(remoteOutboundRtp);
}
// partialStats.decoderImplementation = stats.decoderImplementation;
Expand Down

0 comments on commit da0e7db

Please sign in to comment.