1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-26 17:03:12 +03:00

Request fresh flows on the initial registration request

This commit is contained in:
Travis Ralston
2020-05-27 13:16:10 -06:00
parent 8f72197817
commit f0fa249d36
2 changed files with 8 additions and 6 deletions

View File

@@ -373,6 +373,7 @@ export function extend() {
const target = arguments[0] || {};
for (let i = 1; i < arguments.length; i++) {
const source = arguments[i];
if (!source) continue;
for (const propName in source) { // eslint-disable-line guard-for-in
target[propName] = source[propName];
}