Always hide all feeds
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
8695beb7ca
commit
33abe83dad
2 changed files with 1 additions and 9 deletions
|
@ -23,15 +23,12 @@ import classNames from "classnames";
|
|||
interface IProps {
|
||||
feeds: Array<CallFeed>;
|
||||
call: MatrixCall;
|
||||
hideLocalFeeds: boolean;
|
||||
pipMode: boolean;
|
||||
}
|
||||
|
||||
export default class CallViewSidebar extends React.Component<IProps> {
|
||||
render() {
|
||||
const feeds = this.props.feeds.map((feed) => {
|
||||
if (feed.isLocal() && this.props.hideLocalFeeds) return;
|
||||
|
||||
return (
|
||||
<VideoFeed
|
||||
key={feed.stream.id}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue