From 047658221eaacea08abfb1f01fb9af1728a9d90a Mon Sep 17 00:00:00 2001 From: CerealPXL <83312057+cerealpxl@users.noreply.github.com> Date: Fri, 29 Nov 2024 13:31:12 -0300 Subject: [PATCH] fix: use the itch.zone domain https://github.com/itchio/butler/issues/257 --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 2158212..48a78ba 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -53,7 +53,7 @@ function getPlatform() { * @returns - Download URL */ export function getDownloadUrl(version: string) { - return `https://broth.itch.ovh/butler/${getPlatform()}-${getArch()}/${version}/archive/default`; + return `https://broth.itch.zone/butler/${getPlatform()}-${getArch()}/${version}/archive/default`; } /**