mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
FIX: Server side errors with Topic.similar_to
This commit is contained in:
parent
7c5e15966f
commit
3ee6e42016
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ class TopicsController < ApplicationController
|
||||||
|
|
||||||
# Only suggest similar topics if the site has a minimmum amount of topics present.
|
# Only suggest similar topics if the site has a minimmum amount of topics present.
|
||||||
if Topic.count > SiteSetting.minimum_topics_similar
|
if Topic.count > SiteSetting.minimum_topics_similar
|
||||||
topics = Topic.similar_to(title, raw, current_user)
|
topics = Topic.similar_to(title, raw, current_user).to_a
|
||||||
end
|
end
|
||||||
|
|
||||||
render_serialized(topics, BasicTopicSerializer)
|
render_serialized(topics, BasicTopicSerializer)
|
||||||
|
|
Loading…
Reference in a new issue