diff --git a/src/content/dependencies/generateReleaseInfoListenLine.js b/src/content/dependencies/generateReleaseInfoListenLine.js
index f2a6dd29..d07aad19 100644
--- a/src/content/dependencies/generateReleaseInfoListenLine.js
+++ b/src/content/dependencies/generateReleaseInfoListenLine.js
@@ -5,7 +5,7 @@ function getReleaseContext(urlString, {
_artistURLs,
albumArtistURLs,
}) {
- const composerBandcampDomains =
+ const artistBandcampDomains =
albumArtistURLs
.filter(url => url.hostname.endsWith('.bandcamp.com'))
.map(url => url.hostname);
@@ -16,8 +16,8 @@ function getReleaseContext(urlString, {
return 'officialRelease';
}
- if (composerBandcampDomains.includes(url.hostname)) {
- return 'composerRelease';
+ if (artistBandcampDomains.includes(url.hostname)) {
+ return 'artistRelease';
}
return null;
diff --git a/src/external-links.js b/src/external-links.js
index daf57b41..67ad5f50 100644
--- a/src/external-links.js
+++ b/src/external-links.js
@@ -33,7 +33,7 @@ export const externalLinkContexts = [
'group',
'track',
- 'composerRelease',
+ 'artistRelease',
'officialRelease',
];
@@ -262,10 +262,10 @@ export const externalLinkSpec = [
{
match: {
domain: '.bandcamp.com',
- context: 'composerRelease',
+ context: 'artistRelease',
},
- platform: 'bandcamp.composerRelease',
+ platform: 'bandcamp.artistRelease',
handle: {domain: /^[^.]+/},
icon: 'bandcamp',
diff --git a/src/strings-default.yaml b/src/strings-default.yaml
index 6b68cdb6..38fa80bd 100644
--- a/src/strings-default.yaml
+++ b/src/strings-default.yaml
@@ -651,7 +651,7 @@ misc:
bandcamp:
_: "Bandcamp"
- composerRelease: "Bandcamp (composer's release)"
+ artistRelease: "Bandcamp (artist's release)"
officialRelease: "Bandcamp (official release)"
bgreco:
|