Sort feeds

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-07-20 17:34:47 +02:00
parent 3993e698bd
commit 9fb872cade
No known key found for this signature in database
GPG key ID: 55C211A1226CB17D

View file

@ -27,7 +27,11 @@ interface IProps {
export default class CallViewSidebar extends React.Component<IProps> {
render() {
const feeds = this.props.feeds.map((feed) => {
const feeds = this.props.feeds.sort((a, b) => {
if (!a.isLocal() && b.isLocal()) return -1;
else if (a.isLocal() && !b.isLocal()) return 1;
return 0;
}).map((feed) => {
// Hide local video feed if video is off
if (
this.props.call.isLocalVideoMuted()