diff options
author | (quasar) nebula <towerofnix@gmail.com> | 2021-04-17 14:50:47 -0300 |
---|---|---|
committer | (quasar) nebula <towerofnix@gmail.com> | 2021-04-17 14:50:47 -0300 |
commit | f18d6f2110f96f9b84c6ffa7bf4261f32d4386f4 (patch) | |
tree | 9bd5bae414b908450d95867977431fc2802e49fc | |
parent | 0d0d38ce51ca02b7c3bd91317b5fa0bbff1f06de (diff) |
fix broken album links on tag pages (ty, megatti!)
-rwxr-xr-x | upd8.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upd8.js b/upd8.js index 66582f17..f9727fa2 100755 --- a/upd8.js +++ b/upd8.js @@ -5078,7 +5078,7 @@ function writeTagPage(tag) { : getAlbumCover(thing, {to})), hrefFn: thing => (thing.album ? to('localized.track', thing.directory) - : to('localized.album', thing.album)) + : to('localized.album', thing.directory)) })} </div> ` |