Suppress emoji fetch error on gs.

This commit is contained in:
eal 2017-12-07 23:37:05 +02:00
parent f72d6ec83e
commit 1db1529dec

View file

@ -121,10 +121,16 @@ window.fetch('/static/terms-of-service.html')
}) })
window.fetch('/api/pleroma/emoji.json') window.fetch('/api/pleroma/emoji.json')
.then((res) => res.json()) .then(
.then((values) => { (res) => res.json()
const emoji = Object.keys(values).map((key) => { .then(
return { shortcode: key, image_url: values[key] } (values) => {
}) const emoji = Object.keys(values).map((key) => {
store.dispatch('setOption', { name: 'emoji', value: emoji }) return { shortcode: key, image_url: values[key] }
}) })
store.dispatch('setOption', { name: 'emoji', value: emoji })
},
(failure) => {}
),
(error) => console.log(error)
)