mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 05:43:54 +03:00
Movie Suggestions not populating on 10.11 #6997
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @theguymadmax on GitHub (May 10, 2025).
Originally assigned to: @Shadowghost on GitHub.
Description of the bug
Movie Suggestions do not populate on Master/unstable
Reproduction steps
What is the current bug behavior?
No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.
What is the expected correct behavior?
Movie suggestions should be populated.
Jellyfin Server version
Master
Specify commit id
a7bb3ea214Specify unstable release number
No response
Specify version number
No response
Specify the build version
10.11 (Master)
Environment
Jellyfin logs
FFmpeg logs
Client / Browser logs
No response
Relevant screenshots or videos
Additional information
No response
@Eyt-Lev commented on GitHub (Jun 27, 2025):
that's really weird, the query parameter
SimilarTowas removed in the EFcore migration (https://github.com/jellyfin/jellyfin/pull/12798, commit3e7ce5e1df), so in MoviesController.GetSimilarTosimilaris just empty. I have no idea why.@jofr49 commented on GitHub (Nov 2, 2025):
This bug seems present in the 10.11.1 here too.
@brigcam commented on GitHub (Nov 3, 2025):
same here
@theguymadmax commented on GitHub (Dec 1, 2025):
Partially fixed by #15594
Movies now appear, but because the
SimilarTologic was removed in the EF Core refactor, the populated movies are repetitive.@mattsigal commented on GitHub (Jan 5, 2026):
Just wanted to report that I'm having the same behaviour on my end (Jellyfin server version 10.11.5). All of the "Because you watched..." suggestions for both movies and tv shows get populated with the first 10 movies/shows from my library in alphabetical order, although the "More Like This" recommendations on the individual movie/show pages, while questionable in terms of quality, do work and provide different movies/series.
@SimonvH03 commented on GitHub (Jan 7, 2026):
'More like this' seems rather random. I watched Dune and instead of getting Dune: Part Two recommended I got Bambi.
@jumoog commented on GitHub (Jan 7, 2026):
Because it is more or less random
@theguymadmax commented on GitHub (Jan 7, 2026):
The "More Like This" and "Movie Suggestions" used to use the SimilarTo query:
aefb9b2cff/Emby.Server.Implementations/Data/SqliteItemRepository.cs (L2275)Now:
The "More Like This" matches on genres and tags:
a1e0e4fd9d/Jellyfin.Api/Controllers/LibraryController.cs (L792)The "Movie Suggestions" returns all movies:
a1e0e4fd9d/Jellyfin.Api/Controllers/MoviesController.cs (L278)I don't believe anyone on the team is working on this. Anyone is welcome to implement a method for matching. Probably best to open up a meta discussion if you plan to do so: https://github.com/jellyfin/jellyfin-meta/discussions
Edit: Looks like Shadowghost is already on top of the issue: #15970