From 3eb211f429dfe65d055d03641f5a66b4ad79ccd2 Mon Sep 17 00:00:00 2001 From: Philipp Wolfer Date: Wed, 15 Oct 2008 00:22:50 +0200 Subject: [PATCH] Fixed Vorbis files being marked as changed when the tag "tracktotal" was used. Thanks to hawke for finding and fixing this. Fixes #3924 --- picard/formats/vorbis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picard/formats/vorbis.py b/picard/formats/vorbis.py index 48993a100..ee0cad534 100644 --- a/picard/formats/vorbis.py +++ b/picard/formats/vorbis.py @@ -51,7 +51,7 @@ class VCommentFile(File): elif name == "fingerprint" and value.startswith("MusicMagic Fingerprint"): name = "musicip_fingerprint" value = value[22:] - elif name == "tracktotal": + elif name == "tracktotal" and "totaltracks" not in file.tags: name = "totaltracks" metadata.add(name, value) if self._File == mutagen.flac.FLAC: