diff --git a/output/main.js b/output/main.js index 617a760..5a22bb0 100644 --- a/output/main.js +++ b/output/main.js @@ -439,7 +439,10 @@ function hideCommunity(communityID) { function shareOrCopyToClipboard(text, toastText) { if (navigator.share) { - navigator.share({text}); + navigator.share({ + text, + url: text + }); } else { copyToClipboard(text, toastText) }