fix(custom-github-provider): decode tag from href to handle URL encoding
This commit is contained in:
parent
2f9f5a4f20
commit
efd095fb73
|
|
@ -112,7 +112,7 @@ export class CustomGitHubProvider extends BaseGitHubProvider<GithubUpdateInfo> {
|
|||
}
|
||||
|
||||
// This Release's Tag
|
||||
const hrefTag = hrefElement[1]!
|
||||
const hrefTag = decodeURIComponent(hrefElement[1]!)
|
||||
logger.debug(`Entry #${entryCount}: Processing tag: ${hrefTag}`)
|
||||
|
||||
// Get Channel from this release's tag
|
||||
|
|
|
|||
Loading…
Reference in New Issue