Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/src/commit/0280f8149e5360624294d8d2c88fcecacc91cec0/Ombi.Services/Models/PlexAlbum.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/Ombi.Services/Models/PlexAlbum.cs

13 lines
336 B

namespace Ombi.Services.Models
{
public class PlexAlbum
{
public string Title { get; set; }
public string Artist { get; set; }
public string ReleaseYear { get; set; }
public string Url { get; set; }
public string ProviderId { get; set; }
public string Id { get; set; }
}
}