us and vn can go

This commit is contained in:
Core 2022-08-04 06:26:39 +01:00
parent dc9e7ca68e
commit 296bb0837d
No known key found for this signature in database
GPG key ID: FE9BF1B547F8F3C6
3 changed files with 6 additions and 6 deletions

View file

@ -208,7 +208,7 @@
if (this.search.term == "") {
return
}
app.mk.api.v3.podcasts("/v1/catalog/us/search", {
app.mk.api.v3.podcasts(`/v1/catalog/${app.mk.storefrontId}/search`, {
term: this.search.term,
types: ["podcasts"],
limit: 25

View file

@ -36,7 +36,7 @@
}
},
async mounted() {
app.mk.api.v3.music("/v1/catalog/us/artists/669831761").then(response => {
app.mk.api.v3.music(`/v1/catalog/${app.mk.storefrontId}/artists/669831761`).then(response => {
this.artist = response.data.data[0];
this.artistLoaded = true;
});