Fixed: Audio File Detected actually use file path

Fixes #2162
This commit is contained in:
bakerboy448 2025-10-05 11:04:07 -05:00 committed by Robin Dadswell
parent d62b245732
commit ca32485211

View file

@ -126,11 +126,11 @@ public bool ShouldDeleteFolder(IDirectoryInfo directoryInfo, Artist artist)
if (albumParseResult == null)
{
_logger.Warn("Unable to parse file on import: [{0}]", audioFile);
_logger.Warn("Unable to parse file on import: [{0}]", audioFile.FullName);
return false;
}
_logger.Warn("Audio file detected: [{0}]", audioFile);
_logger.Warn("Audio file detected: [{0}]", audioFile.FullName);
return false;
}