Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/490e22c790fb89b670fbd2fc8a8c4041129dd3c9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
13 additions and
1 deletions
@ -4712,9 +4712,21 @@ namespace Emby.Server.Implementations.Data
continue ;
}
var paramName = "@HasAnyProviderId" + index ;
// TODO this seems to be an idea for a better schema where ProviderIds are their own table
// buut this is not implemented
//hasProviderIds.Add("(COALESCE((select value from ProviderIds where ItemId=Guid and Name = '" + pair.Key + "'), '') <> " + paramName + ")");
// TODO this is a really BAD way to do it since the pair:
// Tmdb, 1234 matches Tmdb=1234 but also Tmdb=1234567
// and maybe even NotTmdb=1234.
// this is a placeholder for this specific pair to correlate it in the bigger query
var paramName = "@HasAnyProviderId" + index ;
// this is a search for the placeholder
hasProviderIds . Add ( "ProviderIds like " + paramName + "" ) ;
// this replaces the placeholder with a value, here: %key=val%
if ( statement ! = null )
{
statement . TryBind ( paramName , "%" + pair . Key + "=" + pair . Value + "%" ) ;