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

Avoid returning null in static resource mapper Task

pull/1878/head
Bogdan 2 years ago
parent 4c8b0c9eec
commit 9869c2272a

@ -50,7 +50,7 @@ namespace Prowlarr.Http.Frontend.Mappers
_logger.Warn("File {0} not found", filePath);
return null;
return Task.FromResult<FileStreamResult>(null);
}
protected virtual Stream GetContentStream(string filePath)

Loading…
Cancel
Save