mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Allowing single subscriber feeds to be seen, as it prevented tryfeeds from working.
This commit is contained in:
parent
0d1e96d81a
commit
8342d36c2c
2 changed files with 3 additions and 3 deletions
|
@ -667,8 +667,8 @@ def load_single_feed(request, feed_id):
|
|||
if dupe_feed_id: data['dupe_feed_id'] = dupe_feed_id
|
||||
if not usersub:
|
||||
data.update(feed.canonical())
|
||||
if not usersub and feed.num_subscribers <= 1:
|
||||
data = dict(code=-1, message="You must be subscribed to this feed.")
|
||||
# if not usersub and feed.num_subscribers <= 1:
|
||||
# data = dict(code=-1, message="You must be subscribed to this feed.")
|
||||
|
||||
# if page <= 1:
|
||||
# import random
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#import <UIKit/UIKit.h>
|
||||
#import "Underscore.h"
|
||||
|
||||
//#define DEBUG 1
|
||||
#define DEBUG 1
|
||||
|
||||
#ifdef DEBUG
|
||||
#define BACKGROUND_REFRESH_SECONDS -5
|
||||
|
|
Loading…
Add table
Reference in a new issue