Skip to content

Commit

Permalink
Fix download URL of PR versions
Browse files Browse the repository at this point in the history
  • Loading branch information
monkbroc committed Jan 25, 2025
1 parent 8cbeac0 commit d69f286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/download-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DownloadManager {
}

async fetchManifest({ version = 'latest' }) {
const metadataUrl = `${settings.tachyonMeta}/tachyon-${version}.json`;
const metadataUrl = `${settings.tachyonMeta}/tachyon-${encodeURIComponent(version)}.json`;

try {
const response = await fetch(metadataUrl);
Expand Down

0 comments on commit d69f286

Please sign in to comment.