Skip to content

Commit

Permalink
Fixed the bug: on the app store page, clicking on the manage button o…
Browse files Browse the repository at this point in the history
…f an app redirects to the 'not found' page
  • Loading branch information
nicola74 committed Jun 1, 2022
1 parent 9fa929a commit 1a53912
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class AppStoreInstallComponent implements OnInit {
this.logger.log("[APP-STORE-INSTALL] PARSED JSON: ", parsed_json);
let appurl = ''
if (parsed_json.version === 'v1') {
appurl = parsed_json.installActionUR
appurl = parsed_json.installActionURL
} else if (parsed_json.version === 'v2') {
appurl = parsed_json.runURL
}
Expand Down

0 comments on commit 1a53912

Please sign in to comment.