Change public/share path to /share - DSub does not use the URL from the API response... :(

This commit is contained in:
Deluan 2023-01-22 20:35:59 -05:00
parent d5df102f9f
commit dbf80d8592
3 changed files with 7 additions and 4 deletions

View file

@ -29,7 +29,7 @@ const defaultConfig = {
devShowArtistPage: true,
enableReplayGain: true,
defaultDownsamplingFormat: 'opus',
publicBaseUrl: '/p',
publicBaseUrl: '/share',
}
let config

View file

@ -7,8 +7,11 @@ export const baseUrl = (path) => {
return parts.join('/')
}
export const shareUrl = (path) => {
const url = new URL(config.publicBaseUrl + '/' + path, window.location.href)
export const shareUrl = (id) => {
const url = new URL(
baseUrl(config.publicBaseUrl + '/' + id),
window.location.href
)
return url.href
}