[TV] Fixed matcher and provider events
This commit is contained in:
Regular → Executable
+2
-2
@@ -83,7 +83,7 @@ class Base(MatcherBase):
|
||||
|
||||
|
||||
class Episode(Base):
|
||||
type = 'episode'
|
||||
type = 'show.episode'
|
||||
|
||||
def correctIdentifier(self, chain, media):
|
||||
identifier = self.getChainIdentifier(chain)
|
||||
@@ -108,7 +108,7 @@ class Episode(Base):
|
||||
return True
|
||||
|
||||
class Season(Base):
|
||||
type = 'season'
|
||||
type = 'show.season'
|
||||
|
||||
def correctIdentifier(self, chain, media):
|
||||
identifier = self.getChainIdentifier(chain)
|
||||
|
||||
Regular → Executable
+2
-2
@@ -6,8 +6,8 @@ class ShowProvider(BaseInfoProvider):
|
||||
|
||||
|
||||
class SeasonProvider(BaseInfoProvider):
|
||||
type = 'season'
|
||||
type = 'show.season'
|
||||
|
||||
|
||||
class EpisodeProvider(BaseInfoProvider):
|
||||
type = 'episode'
|
||||
type = 'show.episode'
|
||||
|
||||
Reference in New Issue
Block a user