mirror of
https://github.com/wukko/cobalt.git
synced 2025-01-12 20:25:06 +01:00
fixed unexpected clipboard popup on ios
This commit is contained in:
parent
5ad7559e47
commit
62a2547957
2 changed files with 2 additions and 2 deletions
|
@ -328,7 +328,7 @@ async function pasteClipboard() {
|
|||
let doError = true;
|
||||
e = String(e).toLowerCase();
|
||||
|
||||
if (e.includes("denied")) errorMessage = loc.clipboardErrorNoPermission;
|
||||
if (e.includes("denied") && !isIOS) errorMessage = loc.clipboardErrorNoPermission;
|
||||
if (e.includes("dismissed")) doError = false;
|
||||
if (e.includes("function") && isFirefox) errorMessage = loc.clipboardErrorFirefox;
|
||||
|
||||
|
|
|
@ -104,7 +104,7 @@ export default function(obj) {
|
|||
name: "support",
|
||||
title: t("CollapseSupport"),
|
||||
body: `
|
||||
${t("SupportSelfTroubleshooting")}<br/>
|
||||
${t("SupportSelfTroubleshooting")}<br/><br/>
|
||||
${t("FollowSupport")}<br/>
|
||||
${socialLink(
|
||||
emoji("🐦"), "twitter", authorInfo.support.twitter.handle, authorInfo.support.twitter.url
|
||||
|
|
Loading…
Reference in a new issue