logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 1664e52cbb5ec08db896127640bd0554cee1d384
parent: dce869dfc7d4e6338da2f0d72b0a9fb2bf6d5351
Author: Yamagishi Kazutoshi <ykzts@desire.sh>
Date:   Tue, 19 Sep 2017 12:06:13 +0900

Fix custom emojis index (#5006)


Diffstat:

Mapp/controllers/admin/custom_emojis_controller.rb2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/controllers/admin/custom_emojis_controller.rb b/app/controllers/admin/custom_emojis_controller.rb @@ -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