From 39e4d2df74ce71d612dde30120414fa01c3dfb07 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Wed, 29 May 2024 16:03:03 -0500 Subject: [PATCH] chg: Show the whole link when clipboard is not accessible --- resources/static/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/static/script.js b/resources/static/script.js index 79b3eac..c80bb43 100644 --- a/resources/static/script.js +++ b/resources/static/script.js @@ -129,7 +129,7 @@ const copyShortUrl = async (link) => { showAlert(`Short URL ${link} was copied to clipboard!`, "green"); } catch (e) { console.log(e); - showAlert("Could not copy short URL to clipboard, please do it manually.", "red"); + showAlert(`Could not copy short URL to clipboard, please do it manually: ${site}/${link}`, "red"); } }