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

Fixed an issue where an unloaded movie could case linking to fail.

pull/2/head
Leonardo Galli 8 years ago
parent 3a4b01cf6f
commit 8b9d0f7b19

@ -146,6 +146,7 @@ namespace NzbDrone.Core.MediaFiles
public MovieFile Add(MovieFile episodeFile)
{
var addedFile = _movieFileRepository.Insert(episodeFile);
episodeFile.Movie.LazyLoad();
_movieService.SetFileId(episodeFile.Movie.Value, episodeFile); //Should not be necessary, but sometimes below fails?
_eventAggregator.PublishEvent(new MovieFileAddedEvent(addedFile));

Loading…
Cancel
Save