forked from AkkomaGang/akkoma-fe
Actually actually fix image url.
This commit is contained in:
parent
f4b1319eff
commit
447ec91176
2 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@ const PostStatusForm = {
|
|||
// eslint-disable-next-line camelcase
|
||||
screen_name: `:${shortcode}:`,
|
||||
name: '',
|
||||
img: image-url
|
||||
img: image_url
|
||||
}))
|
||||
} else {
|
||||
return false
|
||||
|
|
|
@ -108,7 +108,7 @@ window.fetch('/static/emoji.txt')
|
|||
.then((csv) => {
|
||||
const emoji = csv.split('\n').map((row) => {
|
||||
const values = row.split(', ')
|
||||
return { shortcode: values[0], image-url: values[1] }
|
||||
return { shortcode: values[0], image_url: values[1] }
|
||||
})
|
||||
store.dispatch('setOption', { name: 'emoji', value: emoji })
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue