Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/364d19a273b2decd4d30271e4e02770269f427a5?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
2 deletions
@ -67,12 +67,15 @@ namespace MediaBrowser.Model.Querying
/// <value>The sort by.</value>
/// <value>The sort by.</value>
public string [ ] SortBy { get ; set ; }
public string [ ] SortBy { get ; set ; }
public ImageType [ ] ImageTypes { get ; set ; }
/// <summary>
/// <summary>
/// Initializes a new instance of the <see cref="ItemsByNameQuery"/> class.
/// Initializes a new instance of the <see cref="ItemsByNameQuery"/> class.
/// </summary>
/// </summary>
public ItemsByNameQuery ( )
public ItemsByNameQuery ( )
{
{
Fields = new ItemFields [ ] { } ;
ImageTypes = new ImageType [ ] { } ;
Fields = new ItemFields [ ] { } ;
Recursive = true ;
Recursive = true ;
MediaTypes = new string [ ] { } ;
MediaTypes = new string [ ] { } ;
SortBy = new string [ ] { } ;
SortBy = new string [ ] { } ;
@ -1,4 +1,5 @@
using MediaBrowser.Model.Entities ;
namespace MediaBrowser.Model.Querying
namespace MediaBrowser.Model.Querying
{
{
/// <summary>
/// <summary>