diff --git a/src/NzbDrone.Core/Books/Calibre/CalibreProxy.cs b/src/NzbDrone.Core/Books/Calibre/CalibreProxy.cs index 421d0c7e7..1763f53a8 100644 --- a/src/NzbDrone.Core/Books/Calibre/CalibreProxy.cs +++ b/src/NzbDrone.Core/Books/Calibre/CalibreProxy.cs @@ -275,7 +275,7 @@ namespace NzbDrone.Core.Books.Calibre var updatedPath = GetOriginalFormat(updated.Formats); - if (updatedPath != file.Path) + if (updatedPath != null && updatedPath != file.Path) { _rootFolderWatchingService.ReportFileSystemChangeBeginning(updatedPath); file.Path = updatedPath;