@backstage/integration 1.2.2-next.2 → 1.2.2-next.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -730,7 +730,7 @@ async function getBitbucketServerDownloadUrl(url, config) {
730
730
  if (!branch) {
731
731
  branch = await getBitbucketServerDefaultBranch(url, config);
732
732
  }
733
- const path = filepath ? `&path=${encodeURIComponent(filepath)}` : "";
733
+ const path = filepath ? `&path=${encodeURIComponent(decodeURIComponent(filepath))}` : "";
734
734
  return `${config.apiBaseUrl}/projects/${project}/repos/${repoName}/archive?format=tgz&at=${branch}&prefix=${project}-${repoName}${path}`;
735
735
  }
736
736
  function getBitbucketServerFileFetchUrl(url, config) {