« get me outta code hell

data: isOriginalRelease -> isMainRelease, etc - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/common-util/search-spec.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2025-02-19 16:24:14 -0400
committer(quasar) nebula <qznebula@protonmail.com>2025-03-02 08:24:12 -0400
commit76e508ffe3818a78fb941ecde05fe9c269e8bc22 (patch)
tree3dcc62ca4b91799e59dab75a4dcf535e127d5e2b /src/common-util/search-spec.js
parent2bbaa9a58728269f654e48fd9888a309ab890881 (diff)
data: isOriginalRelease -> isMainRelease, etc
Also isRerelease -> isSecondaryRelease

Im sure this is completely bug free and will not
involve squashing one million additional commits
Diffstat (limited to 'src/common-util/search-spec.js')
-rw-r--r--src/common-util/search-spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common-util/search-spec.js b/src/common-util/search-spec.js
index 3d05c021..75de0d16 100644
--- a/src/common-util/search-spec.js
+++ b/src/common-util/search-spec.js
@@ -109,7 +109,7 @@ export const searchSpec = {
       trackData
         // Exclude rereleases - there's no reasonable way to differentiate
         // them from the main release as part of this query.
-        .filter(track => !track.originalReleaseTrack),
+        .filter(track => !track.mainReleaseTrack),
     ].flat(),
 
     process(thing, opts) {