Skip to content

Commit

Permalink
fix: dot to dash replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
tanishqmanuja committed Apr 1, 2024
1 parent b5253cb commit 10c10ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scrapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export async function getDownloadUrl(downloadPageUrl: string) {
}

export async function getVariants(org: string, repo: string, version: string) {
const apkmUrl = `https://www.apkmirror.com/apk/${org}/${repo}/${repo}-${version.replace(
const apkmUrl = `https://www.apkmirror.com/apk/${org}/${repo}/${repo}-${version.replaceAll(
".",
"-"
)}-release`;
Expand Down

0 comments on commit 10c10ae

Please sign in to comment.