From 4c70bd6ba9f9b201eddfaad773748910024162b5 Mon Sep 17 00:00:00 2001 From: jecaro Date: Mon, 29 Jun 2026 16:14:53 +0200 Subject: [PATCH] Fix inconsistency in the default config file --- data/htagcli.toml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/data/htagcli.toml b/data/htagcli.toml index 30d5f0c..e8c1348 100644 --- a/data/htagcli.toml +++ b/data/htagcli.toml @@ -106,23 +106,24 @@ max_size = { width = 1000, height = 1000 } [checks.disc_same_dir] enable = true -# Verify that disc-level tags are consistent across all tracks of a disc -[checks.disc_tags] -enable = true -tags = ["albumartist", "album", "year", "genre"] +# Verify that disc-level tags are consistent across all tracks of a disc. No +# need to check for album, artist, or albumartist tags here as it is already +# enforced by htagcli when grouping tracks into discs. +[checks.disc_tags] enable = true tags = ["year", "genre"] # Verify that track numbers in each disc are sequential starting from 1 [checks.disc_tracks_sequential] enable = true -# Verify that disc numbers within an album are sequential starting from 1 -[checks.album_discs_sequential] +# Verify that album-level tags are consistent across all discs of an album. +# Same as above, no need to check for album, artist, or albumartist tags here. +[checks.album_tags] enable = true +tags = ["year", "genre"] -# Verify that album-level tags are consistent across all discs of an album -[checks.album_tags] +# Verify that disc numbers within an album are sequential starting from 1 +[checks.album_discs_sequential] enable = true -tags = ["albumartist", "album", "year", "genre"] # Verify that all tracks from an artist have the same genre [checks.artist_same_genre]