From 89574860e9d8a49ca20f2006508f9f775f67630e Mon Sep 17 00:00:00 2001 From: Journey Date: Wed, 21 Dec 2022 19:20:22 -0600 Subject: [PATCH] Fix API_URL for github I actually didn't check the develop branch (I'll blame it on me just waking up so was kind of groggy and wasn't fully aware of things at the time) but this fixes it on WAGO version of WOWUP as well now. --- wowup-electron/src/app/addon-providers/github-addon-provider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wowup-electron/src/app/addon-providers/github-addon-provider.ts b/wowup-electron/src/app/addon-providers/github-addon-provider.ts index cef918e7..056588c9 100644 --- a/wowup-electron/src/app/addon-providers/github-addon-provider.ts +++ b/wowup-electron/src/app/addon-providers/github-addon-provider.ts @@ -56,7 +56,7 @@ interface ReleaseMetaItemMetadata { interface: number; } -const API_URL = "https://api.com/repos"; +const API_URL = "https://api.github.com/repos"; const RELEASE_CONTENT_TYPES = { XZIP: "application/x-zip-compressed", ZIP: "application/zip",