Removing broken CDN method.

This commit is contained in:
werewolfboy13 2024-01-05 18:39:36 -06:00
parent 8a988c1e73
commit f155ed879d

View File

@ -21,7 +21,7 @@ function versionOutOfDate(current, latest) {
export default async function () {
const { data } = await axios.get(
`https://cdn.jsdelivr.net/gh/Team-Silver-Sphere/SquadJS@master/package.json`
`https://raw.githubusercontent.com/Team-Silver-Sphere/SquadJS/master/package.json`
);
const outdated = versionOutOfDate(SQUADJS_VERSION, data.version);