Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/2dbf0ecc8240c138ddc53a9d571fa4a911ba58e0?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixes for code review

pull/2/head
Icer Addis 11 years ago
parent c459cdf168
commit 2dbf0ecc82

@ -11,18 +11,7 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
public override string ToString()
{
var sb = new StringBuilder();
bool delimiter = false;
foreach (var title in EpisodeQueryTitles)
{
if (delimiter)
{
sb.Append(',');
}
sb.Append(title);
delimiter = true;
}
return string.Format("[{0} : {1}]", SceneTitle, sb.ToString());
return string.Format("[{0} : {1}]", SceneTitle, String.Join(",", EpisodeQueryTitles));
}
}
}

@ -36,7 +36,12 @@ namespace NzbDrone.Core.Parser.Model
public bool IsPossibleSpecialEpisode()
{
// if we dont have eny episode numbers we are likely a special episode and need to do a search by episode title
return string.IsNullOrEmpty(AirDate) && (EpisodeNumbers.Length == 0 || SeasonNumber == 0 || String.IsNullOrWhiteSpace(SeriesTitle));
return string.IsNullOrEmpty(AirDate) &&
(
EpisodeNumbers.Length == 0 ||
SeasonNumber == 0 ||
String.IsNullOrWhiteSpace(SeriesTitle)
);
}
public override string ToString()

Loading…
Cancel
Save