1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2025-04-20 19:59:59 -05:00

Compare commits

..

No commits in common. "e55c6f82b49581c97a3e6279dbc41b1b70b944a8" and "41b7e37819ae006d4e32114edbb83e60e83f2986" have entirely different histories.

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.1" version = "5.3.0"
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.1" version = "5.3.0"
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: <a href=${site}/${link}>${site}/${link}</a>`, "red"); showAlert("Could not copy short URL to clipboard, please do it manually.", "red");
} }
} }