Initial work on Shares

This commit is contained in:
Deluan
2023-01-19 22:52:55 -05:00
parent 5331de17c2
commit ab04e33da6
36 changed files with 841 additions and 84 deletions
+7 -2
View File
@@ -69,8 +69,13 @@ const getAlbumInfo = (id) => {
return httpClient(url('getAlbumInfo', id))
}
const streamUrl = (id) => {
return baseUrl(url('stream', id, { ts: true }))
const streamUrl = (id, options) => {
return baseUrl(
url('stream', id, {
ts: true,
...options,
})
)
}
export default {