Skip to content

Commit

Permalink
Fixed hatchery uri
Browse files Browse the repository at this point in the history
  • Loading branch information
tjclement committed Aug 21, 2023
1 parent b774314 commit 42dbd45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webusb_site/src/components/Apps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
};
},
get_app_metadata: async (app_slug) => {
let metadata_url = 'https://badge.team/eggs/get/' + app_slug + '/json';
let metadata_url = 'https://hatchery.badge.team/eggs/get/' + app_slug + '/json';
let response = await fetch(metadata_url);
let metadata = await response.json();
let release_keys = Object.keys(metadata.releases).sort();
Expand Down

0 comments on commit 42dbd45

Please sign in to comment.