Fix NPE in LoggedInView
Fixes a NPE displaying the new version bar (also fix displayname for WithMatrixClient)pull/21833/head
parent
c973dbf1c4
commit
2ee98e9fdc
|
@ -199,7 +199,7 @@ export default React.createClass({
|
||||||
var topBar;
|
var topBar;
|
||||||
if (this.props.hasNewVersion) {
|
if (this.props.hasNewVersion) {
|
||||||
topBar = <NewVersionBar version={this.props.version} newVersion={this.props.newVersion}
|
topBar = <NewVersionBar version={this.props.version} newVersion={this.props.newVersion}
|
||||||
releaseNotes={this.state.newVersionReleaseNotes}
|
releaseNotes={this.props.newVersionReleaseNotes}
|
||||||
/>;
|
/>;
|
||||||
}
|
}
|
||||||
else if (this.props.matrixClient.isGuest()) {
|
else if (this.props.matrixClient.isGuest()) {
|
||||||
|
|
|
@ -26,7 +26,7 @@ import React from 'react';
|
||||||
*/
|
*/
|
||||||
export default function(WrappedComponent) {
|
export default function(WrappedComponent) {
|
||||||
return React.createClass({
|
return React.createClass({
|
||||||
displayName: "MatrixClient<" + WrappedComponent.displayName + ">",
|
displayName: "WithMatrixClient<" + WrappedComponent.displayName + ">",
|
||||||
|
|
||||||
contextTypes: {
|
contextTypes: {
|
||||||
matrixClient: React.PropTypes.instanceOf(Matrix.MatrixClient).isRequired,
|
matrixClient: React.PropTypes.instanceOf(Matrix.MatrixClient).isRequired,
|
||||||
|
|
Loading…
Reference in New Issue