Fix submitAuthDict(null) being null in places where it actually should be auth: {}

Took 16 minutes
pull/21833/head
Marcel 2020-04-08 20:55:02 +02:00
parent e3d1cf8d84
commit 69c1e117a3
1 changed files with 2 additions and 2 deletions

View File

@ -650,7 +650,7 @@ export class SSOAuthEntry extends React.Component {
}; };
onConfirmClick = () => { onConfirmClick = () => {
this.props.submitAuthDict(null); this.props.submitAuthDict({});
}; };
render() { render() {
@ -740,7 +740,7 @@ export const FallbackAuthEntry = createReactClass({
event.data === "authDone" && event.data === "authDone" &&
event.origin === this.props.matrixClient.getHomeserverUrl() event.origin === this.props.matrixClient.getHomeserverUrl()
) { ) {
this.props.submitAuthDict(null); this.props.submitAuthDict({});
} }
}, },