Remove deprecated mb_chars method (#34039)

This commit is contained in:
Matt Jankowski 2025-03-03 11:50:57 -05:00 committed by GitHub
commit d90d68bddf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 69 additions and 11 deletions

View file

@ -128,8 +128,8 @@ class FanOutOnWriteService < BaseService
def broadcast_to_hashtag_streams!
@status.tags.map(&:name).each do |hashtag|
redis.publish("timeline:hashtag:#{hashtag.mb_chars.downcase}", anonymous_payload)
redis.publish("timeline:hashtag:#{hashtag.mb_chars.downcase}:local", anonymous_payload) if @status.local?
redis.publish("timeline:hashtag:#{hashtag.downcase}", anonymous_payload)
redis.publish("timeline:hashtag:#{hashtag.downcase}:local", anonymous_payload) if @status.local?
end
end