summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--libs/subliminal_patch/providers/legendasdivx.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/libs/subliminal_patch/providers/legendasdivx.py b/libs/subliminal_patch/providers/legendasdivx.py
index c182b8fcd..e808536f4 100644
--- a/libs/subliminal_patch/providers/legendasdivx.py
+++ b/libs/subliminal_patch/providers/legendasdivx.py
@@ -47,7 +47,10 @@ class LegendasdivxSubtitle(Subtitle):
@property
def id(self):
- return f"legendasdivx_{self.video.imdb_id}_{self.release_info}_{self.uploader}"
+ try:
+ return self.page_link.split("=")[-1]
+ except IndexError:
+ return f"legendasdivx_{self.video.imdb_id}_{self.release_info}_{self.uploader}"
def get_matches(self, video):
matches = set()