From: Eugen Rochko Date: Sat, 15 Oct 2016 14:54:50 +0000 (+0200) Subject: Fix follow suggestions ranking X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=04bfd4262f985332619dea5039404d087d20302e;p=mastodon.git Fix follow suggestions ranking --- diff --git a/app/assets/javascripts/components/features/compose/components/suggestions_box.jsx b/app/assets/javascripts/components/features/compose/components/suggestions_box.jsx index baff317d7..3991fee4d 100644 --- a/app/assets/javascripts/components/features/compose/components/suggestions_box.jsx +++ b/app/assets/javascripts/components/features/compose/components/suggestions_box.jsx @@ -52,6 +52,10 @@ const SuggestionsBox = React.createClass({ render () { const accounts = this.props.accounts.take(3); + if (account.size === 0) { + return
; + } + return (
Who to follow diff --git a/app/models/follow_suggestion.rb b/app/models/follow_suggestion.rb index 4f06db69c..e92546134 100644 --- a/app/models/follow_suggestion.rb +++ b/app/models/follow_suggestion.rb @@ -7,7 +7,7 @@ START a=node:account_index(Account={id}) MATCH (a)-[:follows]->(b)-[:follows]->(c) WHERE a <> c AND NOT (a)-[:follows]->(c) -RETURN DISTINCT c.account_id +RETURN DISTINCT c.account_id, c.nodeRank ORDER BY c.nodeRank LIMIT {limit} END