diff options
Diffstat (limited to 'src/page/track.js')
-rw-r--r-- | src/page/track.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/page/track.js b/src/page/track.js index 7f0d1cf2..b6b03f35 100644 --- a/src/page/track.js +++ b/src/page/track.js @@ -16,7 +16,7 @@ import { import { getTrackCover, getAlbumListTag, - sortChronologically, + sortFlashesChronologically, } from '../util/wiki-data.js'; export const description = `per-track info pages`; @@ -42,7 +42,7 @@ export function write(track, {wikiData}) { let flashesThatFeature; if (wikiInfo.enableFlashesAndGames) { - flashesThatFeature = sortChronologically( + flashesThatFeature = sortFlashesChronologically( [track, ...otherReleases].flatMap((track) => track.featuredInFlashes.map((flash) => ({ flash, |