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

Reverted ToImmutableList change

pull/12798/head
JPVenson 6 months ago
parent c2a0dfb1e5
commit bf7e6858d5

@ -121,7 +121,7 @@ public class MoviesController : BaseJellyfinApiController
DtoOptions = dtoOptions
});
var mostRecentMovies = recentlyPlayedMovies.Take(Math.Min(recentlyPlayedMovies.Count, 6)).ToImmutableList();
var mostRecentMovies = recentlyPlayedMovies.Take(Math.Min(recentlyPlayedMovies.Count, 6));
// Get recently played directors
var recentDirectors = GetDirectors(mostRecentMovies)
.ToList();

Loading…
Cancel
Save