Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/7ab10844379953eaa828840e9db85230a37ac99a/NzbDrone.Api/PagingResource.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Api
|
|
|
|
|
{
|
|
|
|
|
public class PagingResource<TModel>
|
|
|
|
|
{
|
|
|
|
|
public int Page { get; set; }
|
|
|
|
|
public string SortKey { get; set; }
|
|
|
|
|
public int TotalRecords { get; set; }
|
|
|
|
|
public List<TModel> Records { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|