mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2024-11-18 00:46:55 +01:00
[Wiki] Fix broken version fetching
This commit is contained in:
parent
bb2a65eda8
commit
aa280421ae
@ -10,10 +10,12 @@ document$.subscribe(async => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function fetchAPIInfo() {
|
async function fetchAPIInfo() {
|
||||||
const release = await fetch("https://papi-repo-proxy.vercel.app/repo/latest-release").then(_ => _.json());
|
const release = await fetch("https://repo.extendedclip.com/api/maven/latest/version/releases/me/clip/placeholderapi").then(_ => _.json());
|
||||||
|
|
||||||
|
console.log(release)
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
"version": release.name
|
"version": release.version
|
||||||
}
|
}
|
||||||
|
|
||||||
__md_set("__api_tag", data, sessionStorage);
|
__md_set("__api_tag", data, sessionStorage);
|
||||||
|
Loading…
Reference in New Issue
Block a user