aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Result/index.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Result/index.tsx b/src/components/Result/index.tsx
index 706ddca..19f9386 100644
--- a/src/components/Result/index.tsx
+++ b/src/components/Result/index.tsx
@@ -63,14 +63,14 @@ function ShareButton({ guesses, variant }: ShareButtonProps) {
const windowsPlatforms = ['Win32', 'Win64', 'Windows', 'WinCE'];
const onWindows =
windowsPlatforms.indexOf(window.navigator.platform) !== -1;
-
+ const isSecureContext = window.isSecureContext;
if (navigator.share !== undefined && !onWindows) {
await navigator.share({ text: result });
- } else if (navigator.clipboard !== undefined) {
+ } else if (isSecureContext && navigator.clipboard !== undefined) {
await navigator.clipboard.writeText(result);
setButtonText('Copied!');
} else {
- setButtonText('Failed to open share menu or copy');
+ setButtonText('Clipboard unavailable (requires secure context)');
}
}, [result]);
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage