Make private

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-04-13 20:21:03 +02:00
parent 56b15edc58
commit 33fd09d777
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 4 additions and 4 deletions

View File

@ -66,7 +66,7 @@ export default class VideoFeed extends React.Component<IProps, IState> {
this.playMedia();
}
playMedia() {
private playMedia() {
const audioOutput = CallMediaHandler.getAudioOutput();
const currentMedia = this.getCurrentMedia();
@ -117,11 +117,11 @@ export default class VideoFeed extends React.Component<IProps, IState> {
// seem to be necessary - Šimon
}
getCurrentMedia() {
private getCurrentMedia() {
return this.audio.current || this.video.current;
}
onNewStream = () => {
private onNewStream = () => {
this.setState({
audioMuted: this.props.feed.isAudioMuted(),
videoMuted: this.props.feed.isVideoMuted(),
@ -129,7 +129,7 @@ export default class VideoFeed extends React.Component<IProps, IState> {
this.playMedia();
}
onResize = (e) => {
private onResize = (e) => {
if (this.props.onResize && !this.props.feed.isLocal()) {
this.props.onResize(e);
}