mirror of https://github.com/morpheus65535/bazarr
Adding release info to bsplayer and subdvix providers
This commit is contained in:
parent
22ce5dc450
commit
304ee8766c
|
@ -44,6 +44,10 @@ class BSPlayerSubtitle(Subtitle):
|
|||
def id(self):
|
||||
return self.page_link
|
||||
|
||||
@property
|
||||
def release_info(self):
|
||||
return self.filename
|
||||
|
||||
def get_matches(self, video):
|
||||
matches = set()
|
||||
|
||||
|
|
|
@ -35,6 +35,10 @@ class SubdivxSubtitle(Subtitle):
|
|||
def id(self):
|
||||
return self.page_link
|
||||
|
||||
@property
|
||||
def release_info(self):
|
||||
return self.description
|
||||
|
||||
def get_matches(self, video):
|
||||
matches = set()
|
||||
|
||||
|
|
Loading…
Reference in New Issue