Skip to content
Snippets Groups Projects
Commit f0ca8517 authored by James Calfee's avatar James Calfee
Browse files

Comments of ignored users were not being hidden. #150

parent 3ae26baa
No related branches found
No related tags found
No related merge requests found
...@@ -164,7 +164,7 @@ path: '/(:category/)@:username/:slug', ...@@ -164,7 +164,7 @@ path: '/(:category/)@:username/:slug',
const current_user = state.user.get('current') const current_user = state.user.get('current')
let following let following
if(current_user) { if(current_user) {
const key = ['follow', 'get_following', current_user, 'result'] const key = ['follow', 'get_following', current_user.get('username'), 'result']
following = state.global.getIn(key, List()) following = state.global.getIn(key, List())
} }
return { return {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment