Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/5e77d515109bc7904a84b24db58fc4b09815a6a2/NzbDrone.Core/Tvdb/TvdbAsyncResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Core/Tvdb/TvdbAsyncResult.cs

11 lines
187 B

using System.Linq;
namespace NzbDrone.Core.Tvdb
{
public class TvdbAsyncResult <T>
{
public T Data { get; set; }
public object UserState { get; set; }
}
}