Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Groupes] Android: Le partage de lien copie 2 liens à la suite #1306

Open
Vinalti opened this issue Sep 15, 2023 · 0 comments
Open

[Groupes] Android: Le partage de lien copie 2 liens à la suite #1306

Vinalti opened this issue Sep 15, 2023 · 0 comments

Comments

@Vinalti
Copy link

Vinalti commented Sep 15, 2023

Le code suivant est censé générer un lien d'invitation, cependant sur Android / Brave le lien est copié 2 fois d'affilé. (séparé par un espace).
Il semble que sur Android les valeurs text et link soient copié l'une après l'autre.

const sharedURL = `${window.location.origin}/groupes/invitation?groupId=${group?._id}&mtm_campaign=challenge-amis`
const handleShare = async () => {
// TODO: replace with new tracking event
// trackEvent(getMatomoEventShareMobile(score))
if (navigator.share) {
await navigator.share({
text: sharedURL,
url: sharedURL,
title: 'Rejoindre mon groupe',
})
}
}

Cela pourrait être régler en changeant la valeur text avec un message type (ex. "Rejoignez mon groupe xxxxx sur Nos Gestes Climat" - traduction nécessaire).

Attendu:

https://nosgestesclimat.fr/groupes/invitation?groupId=<group_id>&mtm_campaign=challenge-amis

Copié:

https://nosgestesclimat.fr/groupes/invitation?groupId=<group_id>&mtm_campaign=challenge-amis https://nosgestesclimat.fr/groupes/invitation?groupId=<group_id>&mtm_campaign=challenge-amis

Résultat attendu de la solution proposée:

Rejoignez mon groupe xxxxx sur Nos Gestes Climat https://nosgestesclimat.fr/groupes/invitation?groupId=<group_id>&mtm_campaign=challenge-amis

Système : Samsung OneUI 5.1, Android 13
Navigateur : Brave 1.57.62, Chromium 116.0.5845.180

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant