diff --git a/woodwind/tasks.py b/woodwind/tasks.py index 67ef688..a4c1b3f 100644 --- a/woodwind/tasks.py +++ b/woodwind/tasks.py @@ -187,7 +187,7 @@ def check_push_subscription(session, feed, response): topic = next((link['href'] for link in links if 'self' in link['rel']), None) - if ((expiry and expiry - datetime.datetime.utcnow() <= UPDATE_INTERVAL) + if ((expiry and expiry - datetime.datetime.utcnow() <= UPDATE_INTERVAL_PUSH) or hub != old_hub or topic != old_topic or not feed.push_verified): feed.push_hub = hub feed.push_topic = topic diff --git a/woodwind/templates/base.jinja2 b/woodwind/templates/base.jinja2 index 5b756d0..e85a9f6 100644 --- a/woodwind/templates/base.jinja2 +++ b/woodwind/templates/base.jinja2 @@ -48,8 +48,10 @@
+ Your Woodwind account is tied to your personal domain name. Check out IndieWebCamp's Getting Started page for details. + {% endif %} {% block header %}{% endblock %}