Skip to content

Commit

Permalink
Update manifest to use name instead of tag
Browse files Browse the repository at this point in the history
  • Loading branch information
xyzroe committed Apr 21, 2024
1 parent b764d60 commit 9496826
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ function loadFirmwareVersions() {
select.innerHTML = '';
data.forEach(release => {
const option = document.createElement('option');
option.value = `https://raw.githubusercontent.com/xyzroe/XZG/releases/${release.tag_name}/manifest.json`;
option.textContent = release.name || release.tag_name;
option.value = `https://raw.githubusercontent.com/xyzroe/XZG/releases/${release.name}/manifest.json`;
option.textContent = release.name;
select.appendChild(option);
});
updateManifestUrl();
Expand Down

0 comments on commit 9496826

Please sign in to comment.