Merge branch 'master' into develop

This commit is contained in:
David Baker 2017-06-06 17:41:05 +01:00
commit 9f15e8e152
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,10 @@
Changes in [0.9.2](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.9.2) (2017-06-06)
===================================================================================================
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.9.1...v0.9.2)
* Hotfix: Allow password reset when logged in
[\#1044](https://github.com/matrix-org/matrix-react-sdk/pull/1044)
Changes in [0.9.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.9.1) (2017-06-02)
===================================================================================================
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.9.0...v0.9.1)

View File

@ -1,6 +1,6 @@
{
"name": "matrix-react-sdk",
"version": "0.9.1",
"version": "0.9.2",
"description": "SDK for matrix.org using React",
"author": "matrix.org",
"repository": {

View File

@ -369,7 +369,6 @@ module.exports = React.createClass({
this.notifyNewScreen('register');
break;
case 'start_password_recovery':
if (this.state.loggedIn) return;
this.setStateForNewScreen({
screen: 'forgot_password',
});