Skip to content

Commit

Permalink
Merge pull request #125 from daniel3xxx/master
Browse files Browse the repository at this point in the history
Update API
  • Loading branch information
markop159 authored Apr 15, 2020
2 parents 7de9267 + 2bcfd3e commit ee073a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def _create_movie_favs():
movie_favs1 = []
for fav in movie_favs:
log("(Favourites_movie) %s" % fav)
search = '%s/movie/%s' % ('https://tv-v2.api-fetch.website', fav['id'])
search = '%s/movie/%s' % ('https://tv-v2.api-fetch.sh', fav['id'])
req = urllib2.Request(search, headers = {"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36", "Accept-Encoding": "none"})
response = urllib2.urlopen(req)
movie_fav = json.loads(response.read())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
def _getDomains():
domains = [
# Currently working and has all 3 categories
"https://tv-v2.api-fetch.website"
"https://tv-v2.api-fetch.sh"
]

# User domains have highest priority
Expand Down

1 comment on commit ee073a7

@nilox94
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hope this to be moved to settings

Please sign in to comment.