|
@@ -763,12 +763,12 @@ export function setStartMutedPolicy(
|
763
|
763
|
* @param {string} subject - The new subject.
|
764
|
764
|
* @returns {void}
|
765
|
765
|
*/
|
766
|
|
-export function setSubject(subject: string = '') {
|
|
766
|
+export function setSubject(subject: string) {
|
767
|
767
|
return (dispatch: Dispatch<any>, getState: Function) => {
|
768
|
768
|
const { conference } = getState()['features/base/conference'];
|
769
|
769
|
|
770
|
770
|
if (conference) {
|
771
|
|
- conference.setSubject(subject);
|
|
771
|
+ conference.setSubject(subject || '');
|
772
|
772
|
} else {
|
773
|
773
|
dispatch({
|
774
|
774
|
type: SET_PENDING_SUBJECT_CHANGE,
|