mirror of
https://github.com/Readarr/Readarr
synced 2025-12-30 12:13:55 +01:00
Fixed: Don't try to audio tag ebook files
This commit is contained in:
parent
fcd5005502
commit
2e5a9b8dd4
1 changed files with 1 additions and 1 deletions
|
|
@ -205,7 +205,7 @@ public void SyncTags(List<Edition> editions)
|
|||
|
||||
_logger.Debug($"Syncing audio tags for {bookFiles.Count} files");
|
||||
|
||||
foreach (var file in bookFiles)
|
||||
foreach (var file in bookFiles.Where(x => MediaFileExtensions.AudioExtensions.Contains(Path.GetExtension(x.Path))))
|
||||
{
|
||||
// populate tracks (which should also have release/book/author set) because
|
||||
// not all of the updates will have been committed to the database yet
|
||||
|
|
|
|||
Loading…
Reference in a new issue