Wrap getAppVersion() in promise

in case it throws
pull/21833/head
David Baker 2016-11-11 10:05:53 +00:00
parent d871ca2b24
commit 857c0d1747
1 changed files with 3 additions and 1 deletions

View File

@ -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,