summaryrefslogtreecommitdiffhomepage
path: root/libs
diff options
context:
space:
mode:
authorVitiko <[email protected]>2022-04-26 21:21:20 -0400
committerVitiko <[email protected]>2022-04-26 21:21:20 -0400
commit23e847290bc5353cf3b6e21a1e81880cfc17e31d (patch)
tree46587d96b44a28b77385e248f00f4b2f56f93a96 /libs
parente6551dc4d397ac11b89f391349cd9ee75e77692d (diff)
downloadbazarr-23e847290bc5353cf3b6e21a1e81880cfc17e31d.tar.gz
bazarr-23e847290bc5353cf3b6e21a1e81880cfc17e31d.zip
Legendasdivx provider: improve subtitles ID consistency
Diffstat (limited to 'libs')
-rw-r--r--libs/subliminal_patch/providers/legendasdivx.py2
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()