fix: strip base URL path prefix from helm chart download URLs #64
Reference in New Issue
Block a user
Delete Branch "benvin/fix-helm-url-path-dedup"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When a helm repo base URL includes a path component (e.g. `stakater.github.io/stakater-charts`), the merger was extracting the full URL path (`stakater-charts/reloader-2.2.8.tgz`) and the proxy then constructed `base_url/stakater-charts/reloader-2.2.8.tgz` = double path = 404.
Fix: `extractPathRelativeToBase()` strips the shared base path prefix so only the filename portion is used as the proxy path.