mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Sync client and server side behavior for category hashtag lookup
Category.query_from_hashtag_slug is the only source of truth.
This commit is contained in:
@@ -10,8 +10,7 @@ class CategoryHashtagsController < ApplicationController
|
||||
|
||||
slugs_and_urls = {}
|
||||
|
||||
Category.secured(guardian).where(id: ids).order(:id).each do |category|
|
||||
slugs_and_urls[category.slug] ||= category.url
|
||||
Category.secured(guardian).where(id: ids).each do |category|
|
||||
slugs_and_urls[category.slug_path.last(2).join(':')] ||= category.url
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user