Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/90fe8f0cbcd90109740648c57955bb215ce97b27 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge branch 'api-filter' of github.com:crobibero/jellyfin into api-filter

pull/3269/head
crobibero 5 years ago
commit 90fe8f0cbc

@ -159,10 +159,10 @@ namespace Jellyfin.Api.Controllers
? null
: _userManager.GetUserById(userId.Value);
if (string.Equals(includeItemTypes, nameof(BoxSet), StringComparison.OrdinalIgnoreCase) ||
string.Equals(includeItemTypes, nameof(Playlist), StringComparison.OrdinalIgnoreCase) ||
string.Equals(includeItemTypes, nameof(Trailer), StringComparison.OrdinalIgnoreCase) ||
string.Equals(includeItemTypes, "Program", StringComparison.OrdinalIgnoreCase))
if (string.Equals(includeItemTypes, nameof(BoxSet), StringComparison.OrdinalIgnoreCase)
|| string.Equals(includeItemTypes, nameof(Playlist), StringComparison.OrdinalIgnoreCase)
|| string.Equals(includeItemTypes, nameof(Trailer), StringComparison.OrdinalIgnoreCase)
|| string.Equals(includeItemTypes, "Program", StringComparison.OrdinalIgnoreCase))
{
parentItem = null;
}

Loading…
Cancel
Save