1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-14 19:02:33 +03:00

Send empty auth key value pair if doing FallbackStage

Took 3 minutes
This commit is contained in:
Marcel
2020-04-10 19:16:15 +02:00
parent a6fc235461
commit 0e42a6ff85

View File

@@ -740,7 +740,7 @@ export const FallbackAuthEntry = createReactClass({
event.data === "authDone" &&
event.origin === this.props.matrixClient.getHomeserverUrl()
) {
this.props.submitAuthDict({});
this.props.submitAuthDict(null);
}
},