« get me outta code hell

data: linkWikiDataArrays: use getNestedProp - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/checks.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2025-02-11 10:20:51 -0400
committer(quasar) nebula <qznebula@protonmail.com>2025-02-12 07:43:58 -0400
commit1cd87253681074907db8e6751fd787e37b7d17b5 (patch)
tree20d2ac84857d6014e94b9e021517ba2f343bd56d /src/data/checks.js
parent6d691b3e99c67c07f53e368f376c24c8944233b8 (diff)
data: linkWikiDataArrays: use getNestedProp
Diffstat (limited to 'src/data/checks.js')
-rw-r--r--src/data/checks.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/data/checks.js b/src/data/checks.js
index 57d0c1a4..74d0d9f9 100644
--- a/src/data/checks.js
+++ b/src/data/checks.js
@@ -237,7 +237,11 @@ export function filterReferenceErrors(wikiData, {
   const aggregate = openAggregate({message: `Errors validating between-thing references in data`});
   for (const [thingDataProp, propSpec] of referenceSpec) {
     const thingData = getNestedProp(wikiData, thingDataProp);
-    const things = Array.isArray(thingData) ? thingData.flat(Infinity) : [thingData];
+    const things =
+      (Array.isArray(thingData)
+        ? thingData.flat(Infinity)
+        : [thingData]);
+
     aggregate.nest({message: `Reference errors in ${colors.green('wikiData.' + thingDataProp)}`}, ({nest}) => {
       for (const thing of things) {
         nest({message: `Reference errors in ${inspect(thing)}`}, ({nest, push, filter}) => {