diff --git a/app/js/auth/components/AuthModal.js b/app/js/auth/components/AuthModal.js index 6d88bd7ac..b4f06fb55 100644 --- a/app/js/auth/components/AuthModal.js +++ b/app/js/auth/components/AuthModal.js @@ -264,7 +264,6 @@ class AuthModal extends Component { } let profileResponseData - if (this.state.decodedToken.payload.do_not_include_profile) { profileResponseData = null } else { @@ -274,7 +273,11 @@ class AuthModal extends Component { let transitPublicKey = undefined let hubUrl = undefined - const requestVersion = this.state.decodedToken.payload.version + let requestVersion = '0' + if (this.state.decodedToken.payload.hasOwnProperty('version')) { + requestVersion = this.state.decodedToken.payload.version + } + if (isLaterVersion(requestVersion, '1.1.0') && this.state.decodedToken.payload.public_keys.length > 0) { transitPublicKey = this.state.decodedToken.payload.public_keys[0] @@ -469,7 +472,7 @@ class AuthModal extends Component {
-
The app may publish data so that other users of the app can discover +
The app may publish data so that other users of the app can discover and interact with you.
diff --git a/native/macos/Blockstack/Blockstack/Info.plist b/native/macos/Blockstack/Blockstack/Info.plist index de843608e..efd46732a 100644 --- a/native/macos/Blockstack/Blockstack/Info.plist +++ b/native/macos/Blockstack/Blockstack/Info.plist @@ -30,7 +30,7 @@ CFBundleVersion - 82 + 83 LSApplicationCategoryType public.app-category.utilities LSMinimumSystemVersion diff --git a/native/macos/Blockstack/BlockstackLauncher/Info.plist b/native/macos/Blockstack/BlockstackLauncher/Info.plist index 41fb070ab..2cb054ca0 100644 --- a/native/macos/Blockstack/BlockstackLauncher/Info.plist +++ b/native/macos/Blockstack/BlockstackLauncher/Info.plist @@ -19,7 +19,7 @@ CFBundleShortVersionString 0.22.0 CFBundleVersion - 82 + 83 LSApplicationCategoryType public.app-category.utilities LSBackgroundOnly