mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-31 22:20:12 +00:00
Handling over page 200 on single feeds.
This commit is contained in:
parent
e11c26d05b
commit
c9167afadd
1 changed files with 5 additions and 1 deletions
|
@ -603,7 +603,11 @@ def load_single_feed(request, feed_id):
|
|||
if feed.is_newsletter and not usersub:
|
||||
# User must be subscribed to a newsletter in order to read it
|
||||
raise Http404
|
||||
|
||||
|
||||
if page > 200:
|
||||
logging.user(request, "~BR~FK~SBOver page 200 on single feed: %s" % page)
|
||||
raise Http404
|
||||
|
||||
if query:
|
||||
if user.profile.is_premium:
|
||||
user_search = MUserSearch.get_user(user.pk)
|
||||
|
|
Loading…
Add table
Reference in a new issue