Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Reclaim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -730,8 +730,8 @@ export class ReclaimProofRequest {
let template = encodeURIComponent(JSON.stringify(this.templateData));
template = replaceAll(template, '(', '%28');
template = replaceAll(template, ')', '%29');

const instantAppUrl = `https://share.reclaimprotocol.org/verify/?template=${template}`;
const url = `https://share.reclaimprotocol.org/verify/?template=${template}`;
const instantAppUrl = `intent://details?id=org.reclaimprotocol.app&launch=true&url=${url}&referrer=Z#Intent;scheme=market;action=android.intent.action.VIEW;package=com.android.vending;end;`;
logger.info('Redirecting to Android instant app: ' + instantAppUrl);

// Redirect to instant app
Expand Down