You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-08 21:42:24 +03:00
Wrap getAppVersion() in promise
in case it throws
This commit is contained in:
@@ -68,7 +68,9 @@ module.exports = React.createClass({
|
||||
this._unmounted = false;
|
||||
|
||||
if (PlatformPeg.get()) {
|
||||
PlatformPeg.get().getAppVersion().done((appVersion) => {
|
||||
q().then(() => {
|
||||
return PlatformPeg.get().getAppVersion();
|
||||
}).done((appVersion) => {
|
||||
if (this._unmounted) return;
|
||||
this.setState({
|
||||
vectorVersion: appVersion,
|
||||
|
||||
Reference in New Issue
Block a user