mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Adding feeds become auto-active.
This commit is contained in:
parent
00b614f3be
commit
5c5ef48c91
1 changed files with 4 additions and 1 deletions
|
@ -427,7 +427,10 @@ def add_url(request):
|
|||
us, _ = UserSubscription.objects.get_or_create(
|
||||
feed=feed,
|
||||
user=request.user,
|
||||
defaults={'needs_unread_recalc': True}
|
||||
defaults={
|
||||
'needs_unread_recalc': True,
|
||||
'active': True,
|
||||
}
|
||||
)
|
||||
code = 1
|
||||
message = ""
|
||||
|
|
Loading…
Add table
Reference in a new issue