mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
Prevent false notification for moving artist when editing
This commit is contained in:
parent
0655a9aa72
commit
4e70a80324
1 changed files with 9 additions and 6 deletions
|
@ -46,6 +46,8 @@ namespace NzbDrone.Core.Music
|
|||
return;
|
||||
}
|
||||
|
||||
if (moveFiles)
|
||||
{
|
||||
if (index != null && total != null)
|
||||
{
|
||||
_logger.ProgressInfo("Moving {0} from '{1}' to '{2}' ({3}/{4})", artist.Name, sourcePath, destinationPath, index + 1, total);
|
||||
|
@ -54,6 +56,7 @@ namespace NzbDrone.Core.Music
|
|||
{
|
||||
_logger.ProgressInfo("Moving {0} from '{1}' to '{2}'", artist.Name, sourcePath, destinationPath);
|
||||
}
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue