Minor fixes for jitsi-meet-new
* use proper context for the function * remove duplicate line
This commit is contained in:
parent
a0becb918e
commit
bc2afd7d64
|
@ -165,7 +165,6 @@ class VideoContainer extends LargeContainer {
|
||||||
|
|
||||||
get id () {
|
get id () {
|
||||||
return getStreamOwnerId(this.stream);
|
return getStreamOwnerId(this.stream);
|
||||||
return getStreamId(this.stream);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
constructor (onPlay) {
|
constructor (onPlay) {
|
||||||
|
|
|
@ -633,7 +633,7 @@ var VideoLayout = {
|
||||||
var updateLargeVideo = false;
|
var updateLargeVideo = false;
|
||||||
|
|
||||||
// Handle LastN/local LastN changes.
|
// Handle LastN/local LastN changes.
|
||||||
BottomToolbar.getThumbs().each(function( index, element ) {
|
BottomToolbar.getThumbs().each(( index, element ) => {
|
||||||
var resourceJid = getPeerContainerResourceId(element);
|
var resourceJid = getPeerContainerResourceId(element);
|
||||||
|
|
||||||
// We do not want to process any logic for our own(local) video
|
// We do not want to process any logic for our own(local) video
|
||||||
|
|
Loading…
Reference in New Issue