Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit fe0f72b

Browse files
Update
1 parent ca08774 commit fe0f72b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/Root.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
run: npm run build
5656

5757
- name: Publish
58+
continue-on-error: true
5859
run: npm publish --tag "${{ github.event.inputs.package_tag }}"
5960
env:
6061
NODE_AUTH_TOKEN: ${{ matrix.npm_registry == 'NPM' && secrets.NPM_ORG_TOKEN || secrets.GITHUB_TOKEN }}

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export async function findUrlVersion(server: BdsCorePlatforms, Version: string|b
2020
if (server === "bedrock") {
2121
let bedrockData: Root["versions"]["bedrock"][0] = undefined;
2222
if (Version === "latest"||typeof Version === "boolean") {
23-
bedrockData = JSON.parse(await fetchBuffer("https://mcpeversions.sirherobrine23.org//bedrock/latest").then(res => res.toString("utf8")));
23+
bedrockData = JSON.parse(await fetchBuffer("https://mcpeversions.sirherobrine23.org/bedrock/latest").then(res => res.toString("utf8")));
2424
} else {
2525
bedrockData = JSON.parse(await fetchBuffer(`https://mcpeversions.sirherobrine23.org/bedrock/search?version=${Version}`).then(res => res.toString("utf8")));
2626
}

0 commit comments

Comments
 (0)