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

Merge pull request from roguecode/develop

Fixed: Indexer failure log message with local time
pull/2/head
Mark McDowall 10 years ago
commit 2693a3df2e

@ -75,7 +75,7 @@ namespace NzbDrone.Core.Indexers
IndexerStatus blockedIndexerStatus;
if (blockedIndexers.TryGetValue(indexer.Definition.Id, out blockedIndexerStatus))
{
_logger.Debug("Temporarily ignoring indexer {0} till {1} due to recent failures.", indexer.Definition.Name, blockedIndexerStatus.DisabledTill.Value);
_logger.Debug("Temporarily ignoring indexer {0} till {1} due to recent failures.", indexer.Definition.Name, blockedIndexerStatus.DisabledTill.Value.ToLocalTime());
continue;
}

Loading…
Cancel
Save