diff options
Diffstat (limited to 'src/data/things')
-rw-r--r-- | src/data/things/artist.js | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/data/things/artist.js b/src/data/things/artist.js index 589eca90..6e61c28f 100644 --- a/src/data/things/artist.js +++ b/src/data/things/artist.js @@ -256,16 +256,13 @@ export class Artist extends Thing { include: artist => !artist.isAlias, }, - artistIncludingAliases: { + artistAlias: { referenceTypes: ['artist', 'artist-gallery'], bindTo: 'artistData', - getMatchableDirectories(artist) { - // Regular artists are always matchable by their directory. - if (!artist.isAlias) { - return [artist.directory]; - } + include: artist => artist.isAlias, + getMatchableDirectories(artist) { const originalArtist = artist.aliasedArtist; // Aliases never match by the same directory as the original. |