mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-11 11:55:38 +00:00
Emoji api now uses URL object to construct url path
This commit is contained in:
@@ -196,9 +196,9 @@ const plexAuthenticate = (username, password) => {
|
|||||||
// - - - Random emoji - - -
|
// - - - Random emoji - - -
|
||||||
|
|
||||||
const getEmoji = () => {
|
const getEmoji = () => {
|
||||||
const url = path.join(SEASONED_URL, 'v1/emoji')
|
const url = new URL('v1/emoji', SEASONED_URL)
|
||||||
|
|
||||||
return axios.get(url)
|
return axios.get(url.href)
|
||||||
.catch(error => { console.log('api error getting emoji'); throw error })
|
.catch(error => { console.log('api error getting emoji'); throw error })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user