akkoma: change emoji URL
continuous-integration/drone/push Build is passing Details

this does not break pleroma

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2023-01-27 19:13:17 +01:00
parent e05c694ecd
commit f14169546d
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -294,7 +294,7 @@ const instance = {
async getCustomEmoji ({ commit, state }) {
try {
const res = await window.fetch('/api/pleroma/emoji.json')
const res = await window.fetch('/api/v1/pleroma/emoji')
if (res.ok) {
const result = await res.json()
const values = Array.isArray(result) ? Object.assign({}, ...result) : result