fix(filmstrip) don't display filmstrip toggle in Jibri

This commit is contained in:
Saúl Ibarra Corretgé 2022-01-12 15:08:00 +01:00 committed by Saúl Ibarra Corretgé
parent 0b836acad9
commit 30f2fe3577
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ class Filmstrip extends PureComponent <Props> {
let toolbar = null; let toolbar = null;
if (this.props._isFilmstripButtonEnabled) { if (!this.props._iAmRecorder && this.props._isFilmstripButtonEnabled) {
toolbar = this._renderToggleButton(); toolbar = this._renderToggleButton();
} }