« get me outta code hell

content: groupTracksByGroup: fix grouping under other - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/util/groupTracksByGroup.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-07-07 23:06:49 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-07-07 23:06:49 -0300
commit09f7463c05ff18e68199135adce476d555f01c3d (patch)
tree0910f4969fe823e07693037d4876751092292709 /src/content/util/groupTracksByGroup.js
parent1140b58846b3f8dd7e889f99c606beb9ebea75f2 (diff)
content: groupTracksByGroup: fix grouping under other
Diffstat (limited to 'src/content/util/groupTracksByGroup.js')
-rw-r--r--src/content/util/groupTracksByGroup.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/util/groupTracksByGroup.js b/src/content/util/groupTracksByGroup.js
index bae2c8c..559967b 100644
--- a/src/content/util/groupTracksByGroup.js
+++ b/src/content/util/groupTracksByGroup.js
@@ -9,7 +9,7 @@ export default function groupTracksByGroup(tracks, groups) {
     if (group) {
       lists.get(group).push(track);
     } else {
-      other.get('other').push(track);
+      lists.get('other').push(track);
     }
   }