diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-11-16 07:52:26 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-11-16 07:52:26 -0400 |
commit | 226c316f21a8fb7eb5ca549221c3da0473ca5d9d (patch) | |
tree | 9d9bcb73c6da2da93c32e56ba887533353b30927 /src | |
parent | 7f67977621bae27fc94fffc874362a5300667d24 (diff) |
checks: fix error reporting for bad artwork references
Diffstat (limited to 'src')
-rw-r--r-- | src/data/checks.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data/checks.js b/src/data/checks.js index feefc171..a9e8208f 100644 --- a/src/data/checks.js +++ b/src/data/checks.js @@ -301,7 +301,7 @@ export function filterReferenceErrors(wikiData, { wikiData.trackData, ]); - findFn = ref => mixed(ref.reference, data); + findFn = ref => mixed(ref.reference, data, {mode: 'error'}); break; } |