« get me outta code hell

mtui - Music Text User Interface - user-friendly command line music player
about summary refs log tree commit diff
path: root/ui.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui.js')
-rw-r--r--ui.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui.js b/ui.js
index 60d9050..70ac1e8 100644
--- a/ui.js
+++ b/ui.js
@@ -16,6 +16,7 @@ const {
   countTotalTracks,
   flattenGrouplike,
   getCorrespondingFileForItem,
+  getCorrespondingPlayableForFile,
   getItemPath,
   getNameWithoutTrackNumber,
   isGroup,
@@ -1671,6 +1672,10 @@ class GrouplikeListingElement extends Form {
 
       // Add the elements for all the actual items within this playlist.
       for (const item of this.grouplike.items) {
+        if (!isPlayable(item) && getCorrespondingPlayableForFile(item)) {
+          continue
+        }
+
         const itemElement = new InteractiveGrouplikeItemElement(item, this.app)
         this.addEventListeners(itemElement)
         form.addInput(itemElement)