Files
Sub-Zero.bundle/Contents/Code/support
raduc fbcc2644bf Update localmedia.py
There is an issue with subtitle ignoring ext_match_strictness if a custom subtitle folder is defined. Some other people have noted it (https://www.reddit.com/r/PlexACD/comments/6ileio/has_anyone_of_you_found_a_way_to_have_subzero/djphdly/).
I looked at the code and the issue is: if adding a custom subtitle absolute path folder, global_folders will be true and if filename_matches_part is false, the flow will go through this if case:
if global_folders and not filename_matches_part:
but now if the matching file is not in a global folder skip_path is false and the flow will continue, though it should still check match strictness in the next code.
If we change elif to if all will be fine, files that are matching but not in global folders will still go through regular processing and use the strictness defined.
2017-09-24 14:10:23 -07:00
..
2017-06-02 15:42:23 +02:00
2017-07-21 03:31:06 +02:00
2017-06-02 15:42:23 +02:00
2017-07-21 03:31:06 +02:00
2017-09-24 14:10:23 -07:00
2017-06-06 16:45:33 +02:00
2017-07-21 03:31:06 +02:00