Skip to content

Commit

Permalink
Do not show un-supported DSF tags in UI
Browse files Browse the repository at this point in the history
  • Loading branch information
samj1912 committed Feb 28, 2018
1 parent 2349388 commit 9c70a50
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions picard/formats/id3.py
Expand Up @@ -625,6 +625,10 @@ def _save_tags(self, tags, filename):
tags.update_to_v24()
tags.save(filename, v2_version=4)

def supports_tag(self, name):
return (super().supports_tag(name)
and name not in ['albumsort', 'artistsort', 'discsubtitle', 'titlesort'])


if mutagen.aiff:
class AiffFile(ID3File):
Expand Down

0 comments on commit 9c70a50

Please sign in to comment.