diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-04-18 11:22:41 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-04-18 11:22:41 -0300 |
commit | 3abf558aa3d9ffeb5a6516b750880f7d4b0ab3de (patch) | |
tree | ed49522182d0f9f0a573a762c9555526cebac231 | |
parent | f32204abe088563c867289948e5d935de03df39c (diff) |
getChronologyRelations: don't count the same thing twice
-rw-r--r-- | src/content/util/getChronologyRelations.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/util/getChronologyRelations.js b/src/content/util/getChronologyRelations.js index cdfdef39..4b7d9ce5 100644 --- a/src/content/util/getChronologyRelations.js +++ b/src/content/util/getChronologyRelations.js @@ -5,7 +5,7 @@ export default function getChronologyRelations(thing, { getThings, }) { return contributions.map(({who}) => { - const things = getThings(who); + const things = Array.from(new Set(getThings(who))); const index = things.indexOf(thing); const previous = things[index - 1]; const next = things[index + 1]; |