diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-02-11 13:06:34 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-02-11 13:06:34 -0400 |
commit | c11498540e3fa393278de64f54090bf08e75d1f0 (patch) | |
tree | b406a950871a7d782eb51852af4a4820caf7106a /src | |
parent | 60d8f71e4f432d5131c59333c80ceefece0ea1db (diff) |
checks: stop suppressing sample ref errors
Diffstat (limited to 'src')
-rw-r--r-- | src/data/checks.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/data/checks.js b/src/data/checks.js index 8f9f0305..9a859165 100644 --- a/src/data/checks.js +++ b/src/data/checks.js @@ -373,6 +373,10 @@ export function filterReferenceErrors(wikiData, { } const suppress = fn => conditionallySuppressError(error => { + // We're not suppressing any errors at the moment. + // An old suppression is kept below for reference. + + /* if (property === 'sampledTracks') { // Suppress "didn't match anything" errors in particular, just for samples. // In hsmusic-data we have a lot of "stub" sample data which don't have @@ -385,6 +389,7 @@ export function filterReferenceErrors(wikiData, { return true; } } + */ return false; }, fn); |