diff options
Diffstat (limited to 'src/page')
-rw-r--r-- | src/page/artist.js | 6 | ||||
-rw-r--r-- | src/page/tag.js | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/page/artist.js b/src/page/artist.js index 2e87669d..e6160be3 100644 --- a/src/page/artist.js +++ b/src/page/artist.js @@ -452,9 +452,9 @@ export function write(artist, {wikiData}) { srcFn: thing => (thing.album ? getTrackCover(thing) : getAlbumCover(thing)), - hrefFn: thing => (thing.album - ? to('localized.track', thing.directory) - : to('localized.album', thing.directory)) + linkFn: (thing, opts) => (thing.album + ? link.track(thing, opts) + : link.album(thing, opts)) })} </div> ` diff --git a/src/page/tag.js b/src/page/tag.js index 4253120e..791c713d 100644 --- a/src/page/tag.js +++ b/src/page/tag.js @@ -53,9 +53,9 @@ export function write(tag, {wikiData}) { srcFn: thing => (thing.album ? getTrackCover(thing) : getAlbumCover(thing)), - hrefFn: thing => (thing.album - ? to('localized.track', thing.directory) - : to('localized.album', thing.directory)) + linkFn: (thing, opts) => (thing.album + ? link.track(thing, opts) + : link.album(thing, opts)) })} </div> ` |