mirror of
https://github.com/NotAShelf/Echo.git
synced 2024-11-01 11:41:13 +00:00
use the correct tag URL in the version string
This commit is contained in:
parent
64d35045b4
commit
658048a173
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@
|
|||
document.addEventListener("DOMContentLoaded", function () {
|
||||
const footer = document.getElementById("footer");
|
||||
const version = footer.textContent.split(" ").pop();
|
||||
const githubURL = `https://github.com/NotAShelf/Echo/tags/${version}`;
|
||||
const githubURL = `https://github.com/NotAShelf/Echo/releases/tag/${version}`;
|
||||
|
||||
const link = document.createElement("a");
|
||||
link.href = githubURL;
|
||||
|
|
Loading…
Reference in a new issue