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

Merge pull request from vertigo235/notifications

Download Movie Quality & Formatting
Devin Buhl 8 years ago committed by GitHub
commit 5ebd035b1c

@ -80,7 +80,7 @@ namespace NzbDrone.Core.Notifications
qualityString += " Proper";
}
return string.Format("{0}[{1}]",
return string.Format("{0} [{1}]",
movie.Title,
qualityString);
}
@ -210,7 +210,7 @@ namespace NzbDrone.Core.Notifications
public void Handle(MovieDownloadedEvent message)
{
var downloadMessage = new DownloadMessage();
downloadMessage.Message = GetMessage(message.Movie.Movie, message.Movie.ParsedMovieInfo.Quality);
downloadMessage.Message = GetMessage(message.Movie.Movie, message.Movie.Quality);
downloadMessage.Series = null;
downloadMessage.EpisodeFile = null;
downloadMessage.Movie = message.Movie.Movie;

Loading…
Cancel
Save