Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/e188c9aac0395c3ea6c7b8ede824799bcb6b6784 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Don't die when trying to open file with nullable path

Closes 
pull/2998/head v0.3.9.2272
Bogdan 1 year ago
parent a3ae2359f5
commit e188c9aac0

@ -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;

Loading…
Cancel
Save