diff --git a/sickbeard/__init__.py b/sickbeard/__init__.py index f8a3be3af6..3720d2a659 100644 --- a/sickbeard/__init__.py +++ b/sickbeard/__init__.py @@ -137,8 +137,8 @@ GIT_PATH = None DEVELOPER = False -NEWS_URL = 'https://api.pymedusa.com/news.md' -LOGO_URL = 'https://api.pymedusa.com/favicon-64.png' +NEWS_URL = 'https://cdn.pymedusa.com/sickrage-news/news.md' +LOGO_URL = 'https://cdn.pymedusa.com/images/ico/favicon-64.png' NEWS_LAST_READ = None NEWS_LATEST = None diff --git a/sickbeard/webserve.py b/sickbeard/webserve.py index e875a200bc..eefe23227f 100644 --- a/sickbeard/webserve.py +++ b/sickbeard/webserve.py @@ -2257,10 +2257,10 @@ def __init__(self, *args, **kwargs): def index(self): try: - changes = helpers.getURL('https://api.pymedusa.com/changelog.md', session=helpers.make_session(), returns='text') + changes = helpers.getURL('https://cdn.pymedusa.com/sickrage-news/CHANGES.md', session=helpers.make_session(), returns='text') except Exception: logger.log(u'Could not load changes from repo, giving a link!', logger.DEBUG) - changes = 'Could not load changes from the repo. [Click here for CHANGES.md](https://api.pymedusa.com/CHANGES.md)' + changes = 'Could not load changes from the repo. [Click here for CHANGES.md](https://cdn.pymedusa.com/sickrage-news/CHANGES.md)' t = PageTemplate(rh=self, filename="markdown.mako") data = markdown2.markdown(changes if changes else "The was a problem connecting to github, please refresh and try again", extras=['header-ids'])