Skip to content

Commit

Permalink
Fix get current user bug
Browse files Browse the repository at this point in the history
  • Loading branch information
abbydineen authored and abbydineen committed Jan 11, 2016
1 parent 6493b51 commit f498883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def feed_handler(response):
popular = sorted(mists, key = lambda list: list.get_likes())
popular.reverse()

user_id = get_current_user_id(response)
user_id = util.get_current_user_id(response)
response.write(templater.render("templates/feed.html", mists=mists, popular=popular, page_title = "Feed", site_title = "M'lists", user_id=user_id))

# dashboard integrates profile
Expand Down

0 comments on commit f498883

Please sign in to comment.