Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/d1be0b31a2ad858155f51486ee86bb39a36240ad?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Added publishers to BaseItem

pull/702/head
Luke Pulverenti 12 years ago
parent 5ba769f3b4
commit d1be0b31a2

@ -64,6 +64,11 @@ namespace MediaBrowser.Controller.Library
dto.Studios = item.Studios;
}
if (fields.Contains(ItemFields.Publishers))
{
dto.Publishers = item.Publishers;
}
if (fields.Contains(ItemFields.People))
{
tasks.Add(AttachPeople(dto, item));

@ -433,6 +433,13 @@ namespace MediaBrowser.Model.Dto
[ProtoMember(70)]
public string OverviewHtml { get; set; }
/// <summary>
/// Gets or sets the publishers.
/// </summary>
/// <value>The publishers.</value>
[ProtoMember(71)]
public List<string> Publishers { get; set; }
/// <summary>
/// Gets a value indicating whether this instance can resume.
/// </summary>

@ -81,6 +81,11 @@ namespace MediaBrowser.Model.Querying
/// </summary>
PrimaryImageAspectRatio,
/// <summary>
/// The publishers
/// </summary>
Publishers,
/// <summary>
/// AirDays, status, SeriesName, etc
/// </summary>

Loading…
Cancel
Save