Fix: displayName LTI regression

master
Mészáros Mihály 2020-03-14 23:08:00 +01:00
parent 3ae3e3ecd2
commit 0bd983b10a
1 changed files with 2 additions and 1 deletions

View File

@ -129,7 +129,8 @@ export default class RoomClient
this._forceTcp = forceTcp; this._forceTcp = forceTcp;
// Use displayName // Use displayName
store.dispatch(settingsActions.setDisplayName(displayName)); if (displayName)
store.dispatch(settingsActions.setDisplayName(displayName));
// Torrent support // Torrent support
this._torrentSupport = null; this._torrentSupport = null;