2
2
mirror of https://github.com/mastodon/mastodon synced 2025-04-12 00:56:38 +02:00

Fix custom emojis index ()

This commit is contained in:
Yamagishi Kazutoshi 2017-09-19 12:06:13 +09:00 committed by Eugen Rochko
parent dce869dfc7
commit 1664e52cbb

@ -3,7 +3,7 @@
module Admin
class CustomEmojisController < BaseController
def index
@custom_emojis = CustomEmoji.where(uri: nil)
@custom_emojis = CustomEmoji.where(domain: nil)
end
def new