Skip to content
Open
Changes from 2 commits
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
3 changes: 1 addition & 2 deletions src/Reclaim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -730,8 +730,7 @@ 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 instantAppUrl = `intent://details?id=org.reclaimprotocol.app&launch=true&template=${template}&referrer=Z#Intent;scheme=market;action=android.intent.action.VIEW;package=com.android.vending;end;`;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

referer as Z why?

logger.info('Redirecting to Android instant app: ' + instantAppUrl);

// Redirect to instant app
Expand Down