fix(settings): store url display name and email.

This commit is contained in:
Hristo Terezov 2020-08-24 14:49:47 -05:00
parent eb8b730227
commit 4ded94d130
1 changed files with 11 additions and 2 deletions

View File

@ -9,6 +9,7 @@ import { MiddlewareRegistry } from '../redux';
import { parseURLParams } from '../util';
import { SETTINGS_UPDATED } from './actionTypes';
import { updateSettings } from './actions';
import { handleCallIntegrationChange, handleCrashReportingChange } from './functions';
/**
@ -160,10 +161,18 @@ function _updateLocalParticipantFromUrl({ dispatch, getState }) {
const localParticipant = getLocalParticipant(getState());
if (localParticipant) {
const displayName = _.escape(urlDisplayName);
const email = _.escape(urlEmail);
dispatch(participantUpdated({
...localParticipant,
email: _.escape(urlEmail),
name: _.escape(urlDisplayName)
email,
name: displayName
}));
dispatch(updateSettings({
displayName,
email
}));
}
}