mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 14:36:04 +00:00
Fix empty query sent to postgres for custom emojis (#5121)
This commit is contained in:
parent
6e83b5e719
commit
3caf0ba923
|
@ -33,7 +33,11 @@ class CustomEmoji < ApplicationRecord
|
||||||
class << self
|
class << self
|
||||||
def from_text(text, domain)
|
def from_text(text, domain)
|
||||||
return [] if text.blank?
|
return [] if text.blank?
|
||||||
shortcodes = text.scan(SCAN_RE).map(&:first)
|
|
||||||
|
shortcodes = text.scan(SCAN_RE).map(&:first).uniq
|
||||||
|
|
||||||
|
return [] if shortcodes.empty?
|
||||||
|
|
||||||
where(shortcode: shortcodes, domain: domain)
|
where(shortcode: shortcodes, domain: domain)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue