mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
parent
cdd44a2830
commit
4d6c9482ff
1 changed files with 5 additions and 0 deletions
|
@ -59,6 +59,11 @@ func (e *taglibExtractor) extractMetadata(filePath string) (*taglibMetadata, err
|
|||
}
|
||||
|
||||
func hasEmbeddedImage(path string) bool {
|
||||
defer func() {
|
||||
if r := recover(); r != nil {
|
||||
log.Error("Panic while checking for images. Please report this error with a copy of the file", "path", path, r)
|
||||
}
|
||||
}()
|
||||
f, err := os.Open(path)
|
||||
if err != nil {
|
||||
log.Warn("Error opening file", "filePath", path, err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue