Skip to content

Commit

Permalink
add 1080p support for kissanime (#88)
Browse files Browse the repository at this point in the history
* add 1080p support for kissani
  • Loading branch information
Jonas A. Walther authored and vn-ki committed Oct 5, 2018
1 parent 29cc13a commit e7ae503
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions anime_downloader/sites/kissanime.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


class KissanimeEpisode(BaseEpisode):
QUALITIES = ['360p', '480p', '720p']
QUALITIES = ['360p', '480p', '720p', '1080p']
_base_url = 'http://kissanime.ru'
VERIFY_HUMAN = True

Expand All @@ -36,7 +36,7 @@ def _scrape_episode(self, response):
class KissAnime(BaseAnimeCF):
sitename = 'kissanime'
_referer = 'http://kissanime.ru/'
QUALITIES = ['360p', '480p', '720p']
QUALITIES = ['360p', '480p', '720p', '1080p']
_episodeClass = KissanimeEpisode

@classmethod
Expand Down

0 comments on commit e7ae503

Please sign in to comment.