Skip to content

Commit

Permalink
Feedcrunch RSS Viewer was not showing RSS and Atom Feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
DEKHTIARJonathan committed Sep 12, 2017
1 parent 91583e3 commit d3b86d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feedcrunch_rssviewer/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def index(request, feedname=None):

posts = Post.objects.filter(user = feedname, activeLink=True).order_by('-id')
requested_user = FeedUser.objects.get(username=feedname)
return render(request, 'rssviewer.html', {'posts': posts, 'requested_user': requested_user})
return render(request, 'rssviewer.html', {'posts': posts, 'requested_user': requested_user, 'rss_feed_display': True})

def dataset(request, feedname=None):

Expand Down

0 comments on commit d3b86d2

Please sign in to comment.