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/dca5d138267f80149eaf4b0f9cbdce8bd26f2abf/Old/Ombi.Api.Models/Plex/PlexLibraries.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/Old/Ombi.Api.Models/Plex/PlexLibraries.cs

23 lines
548 B

using System.Collections.Generic;
using System.Xml.Serialization;
namespace Ombi.Api.Models.Plex
{
[XmlRoot(ElementName = "MediaContainer")]
public class PlexLibraries
{
[XmlElement(ElementName = "Directory")]
public List<Directory> Directories { get; set; }
}
[XmlRoot(ElementName = "Location")]
public partial class Location
{
[XmlElement(ElementName = "id")]
public int id { get; set; }
[XmlElement(ElementName = "path")]
public string path { get; set; }
}
}