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

Changing Indexer failure log message to local from UTC.

pull/2/head
Matt 10 years ago
parent b6c4a97675
commit 8062466ab8

@ -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