Don't bother recalculating feed's subs, as it will do that on next fetch.

This commit is contained in:
Samuel Clay 2015-05-18 14:45:00 -07:00
parent 89089ddbc2
commit 8a52f093c4

View file

@ -205,7 +205,8 @@ class Profile(models.Model):
sub.active = False
try:
sub.save()
sub.feed.setup_feed_for_premium_subscribers()
# Don't bother recalculating feed's subs, as it will do that on next fetch
# sub.feed.setup_feed_for_premium_subscribers()
except (IntegrityError, Feed.DoesNotExist):
pass