-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix using movie.nfo first when <filename>.nfo also exists #10339
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see an issue with this.
|
If there are multiple movies in a folder, would this force the same nfo onto all of them even if they have their own? |
|
That is correct and a problem. Likely the reason why this check was placed after the direct match. Not sure how we could remedy this though. I'd rather drop this PR if we don't find a way to handle this. |
In this code, I see only when
Sorry I didn't fully read the codes. So please check whether the condition |
If the condition |
|
What you tested is only different movies in a single folder if I understand the pictures correctly? |
|
Your structure is not correct though, you'd need to test it with a folder structure like this: This is because the multi-version matching depends on the folder name (see our naming guidelines) |
|
Now I can see the problem after changing the parent folder name to Problem is that it also uses After removing But it still has the problem, it also has the same title for 1080p and 2160p, This problem may be beyond this PR to fix. So a better way to fix the issue is to check whether |
|
This problem is know, so it's working as expected even if we have multiple versions. I guess we're fine now. Thanks for testing! |
You mean current simple solution of this PR for #1558 is OK? |










<filename>.nfois used for store custom information of movie uploader on some private tracker bittorrent website, which is not a valid movie metadata nfo file. Overwrite<filename>.nfowill lead errors with file sharing. Therefor usingmovie.nfofirst may be better when<filename>.nfoalso exists.Changes
Use
movie.nfofirst when<filename>.nfoalso exists.Issues
Fixes #1558