diff options
author | Vitiko <[email protected]> | 2022-04-26 21:21:20 -0400 |
---|---|---|
committer | Vitiko <[email protected]> | 2022-04-26 21:21:20 -0400 |
commit | 23e847290bc5353cf3b6e21a1e81880cfc17e31d (patch) | |
tree | 46587d96b44a28b77385e248f00f4b2f56f93a96 /libs | |
parent | e6551dc4d397ac11b89f391349cd9ee75e77692d (diff) | |
download | bazarr-23e847290bc5353cf3b6e21a1e81880cfc17e31d.tar.gz bazarr-23e847290bc5353cf3b6e21a1e81880cfc17e31d.zip |
Legendasdivx provider: improve subtitles ID consistency
Diffstat (limited to 'libs')
-rw-r--r-- | libs/subliminal_patch/providers/legendasdivx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/subliminal_patch/providers/legendasdivx.py b/libs/subliminal_patch/providers/legendasdivx.py index f965d7f9d..c182b8fcd 100644 --- a/libs/subliminal_patch/providers/legendasdivx.py +++ b/libs/subliminal_patch/providers/legendasdivx.py @@ -47,7 +47,7 @@ class LegendasdivxSubtitle(Subtitle): @property def id(self): - return self.page_link + return f"legendasdivx_{self.video.imdb_id}_{self.release_info}_{self.uploader}" def get_matches(self, video): matches = set() |