Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/602d003e7b8345722a6dea65137459f23c2deab1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
11 additions and
8 deletions
@ -2405,17 +2405,20 @@ namespace MediaBrowser.Server.Implementations.Persistence
cmd . Parameters . Add ( cmd , "@IsFavorite" , DbType . Boolean ) . Value = query . IsFavorite . Value ;
}
if ( query. IsPlayed . HasValue )
if ( EnableJoinUserData( query ) )
{
if ( query . IsPlayed . Value )
{
whereClauses . Add ( "(played=@IsPlayed)" ) ;
}
else
if ( query . IsPlayed . HasValue )
{
whereClauses . Add ( "(played is null or played=@IsPlayed)" ) ;
if ( query . IsPlayed . Value )
{
whereClauses . Add ( "(played=@IsPlayed)" ) ;
}
else
{
whereClauses . Add ( "(played is null or played=@IsPlayed)" ) ;
}
cmd . Parameters . Add ( cmd , "@IsPlayed" , DbType . Boolean ) . Value = query . IsPlayed . Value ;
}
cmd . Parameters . Add ( cmd , "@IsPlayed" , DbType . Boolean ) . Value = query . IsPlayed . Value ;
}
if ( query . IsResumable . HasValue )