1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-10-16 13:27:03 -05:00

Compare commits

...

3 commits

3 changed files with 3 additions and 3 deletions

2
actix/Cargo.lock generated
View file

@ -468,7 +468,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]] [[package]]
name = "chhoto-url" name = "chhoto-url"
version = "5.3.0" version = "5.3.1"
dependencies = [ dependencies = [
"actix-files", "actix-files",
"actix-session", "actix-session",

View file

@ -3,7 +3,7 @@
[package] [package]
name = "chhoto-url" name = "chhoto-url"
version = "5.3.0" version = "5.3.1"
edition = "2021" edition = "2021"
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"] authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
license = "mit" license = "mit"

View file

@ -129,7 +129,7 @@ const copyShortUrl = async (link) => {
showAlert(`Short URL ${link} was copied to clipboard!`, "green"); showAlert(`Short URL ${link} was copied to clipboard!`, "green");
} catch (e) { } catch (e) {
console.log(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: <a href=${site}/${link}>${site}/${link}</a>`, "red");
} }
} }