Fixed: Logging when series folder is moved successfully

Closes #1764

Co-Authored-By: David Newhall <2402929+davidnewhall@users.noreply.github.com>
This commit is contained in:
Qstick 2022-12-24 17:18:09 -06:00
parent 590b203bb6
commit 5726df841c

View file

@ -61,7 +61,7 @@ private void MoveSingleAuthor(Author author, string sourcePath, string destinati
_diskTransferService.TransferFolder(sourcePath, destinationPath, TransferMode.Move);
_logger.ProgressInfo("{0} moved successfully to {1}", author.Name, author.Path);
_logger.ProgressInfo("{0} moved successfully to {1}", author.Name, destinationPath);
_eventAggregator.PublishEvent(new AuthorMovedEvent(author, sourcePath, destinationPath));
}