[TV] Fixed matcher and provider events

This commit is contained in:
Dean Gardiner
2014-07-26 22:56:26 +12:00
parent 74caecbe89
commit c2c98f644b
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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)
+2 -2
View File
@@ -6,8 +6,8 @@ class ShowProvider(BaseInfoProvider):
class SeasonProvider(BaseInfoProvider):
type = 'season'
type = 'show.season'
class EpisodeProvider(BaseInfoProvider):
type = 'episode'
type = 'show.episode'