Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/f21a235c001c331dfc85b012b62c4712bd4144ff/NzbDrone.Common/Cache/ICached.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Common/Cache/ICached.cs

14 lines
301 B

using System;
namespace NzbDrone.Common.Cache
{
public interface ICached<T>
{
void Set(string key, T value);
T Get(string key, Func<T> function);
bool ContainsKey(string key);
void Clear();
void Remove(string key);
T Get(string key);
}
}