Browse Source

Update app.js

pull/1690/head
alexn707 5 months ago
committed by GitHub
parent
commit
1b9536c707
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      src/www/js/app.js

3
src/www/js/app.js

@ -472,9 +472,8 @@ new Vue({
i18n.locale = lang; i18n.locale = lang;
} }
return;
const currentRelease = await this.api.getRelease(); const currentRelease = await this.api.getRelease();
const latestRelease = await fetch('https://wg-easy.github.io/wg-easy/changelog.json') const latestRelease = await fetch('https://raw.githubusercontent.com/alexn707/awg-easy/production/docs/changelog.json')
.then((res) => res.json()) .then((res) => res.json())
.then((releases) => { .then((releases) => {
const releasesArray = Object.entries(releases).map(([version, changelog]) => ({ const releasesArray = Object.entries(releases).map(([version, changelog]) => ({

Loading…
Cancel
Save