From 1650ad350d7377a878bb24b4a8b802c47531b5c7 Mon Sep 17 00:00:00 2001 From: samunohito <46447427+samunohito@users.noreply.github.com> Date: Sat, 17 Feb 2024 21:22:30 +0900 Subject: [PATCH] fix url --- packages/frontend/src/pages/admin/custom-emojis-grid.remote.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/pages/admin/custom-emojis-grid.remote.vue b/packages/frontend/src/pages/admin/custom-emojis-grid.remote.vue index 7e01bfbd27..18e217d4b5 100644 --- a/packages/frontend/src/pages/admin/custom-emojis-grid.remote.vue +++ b/packages/frontend/src/pages/admin/custom-emojis-grid.remote.vue @@ -217,7 +217,7 @@ async function refreshCustomEmojis(query?: string, host?: string, sinceId?: stri gridItems.value = customEmojis.value.map(it => ({ checked: false, id: it.id, - url: it.uri!, + url: it.publicUrl, name: it.name, host: it.host!, }));