mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Change public/share path to /share
- DSub does not use the URL from the API response... :(
This commit is contained in:
parent
d5df102f9f
commit
dbf80d8592
3 changed files with 7 additions and 4 deletions
|
@ -32,7 +32,7 @@ const (
|
||||||
URLPathUI = "/app"
|
URLPathUI = "/app"
|
||||||
URLPathNativeAPI = "/api"
|
URLPathNativeAPI = "/api"
|
||||||
URLPathSubsonicAPI = "/rest"
|
URLPathSubsonicAPI = "/rest"
|
||||||
URLPathPublic = "/p"
|
URLPathPublic = "/share"
|
||||||
URLPathPublicImages = URLPathPublic + "/img"
|
URLPathPublicImages = URLPathPublic + "/img"
|
||||||
|
|
||||||
// DefaultUILoginBackgroundURL uses Navidrome curated background images collection,
|
// DefaultUILoginBackgroundURL uses Navidrome curated background images collection,
|
||||||
|
|
|
@ -29,7 +29,7 @@ const defaultConfig = {
|
||||||
devShowArtistPage: true,
|
devShowArtistPage: true,
|
||||||
enableReplayGain: true,
|
enableReplayGain: true,
|
||||||
defaultDownsamplingFormat: 'opus',
|
defaultDownsamplingFormat: 'opus',
|
||||||
publicBaseUrl: '/p',
|
publicBaseUrl: '/share',
|
||||||
}
|
}
|
||||||
|
|
||||||
let config
|
let config
|
||||||
|
|
|
@ -7,8 +7,11 @@ export const baseUrl = (path) => {
|
||||||
return parts.join('/')
|
return parts.join('/')
|
||||||
}
|
}
|
||||||
|
|
||||||
export const shareUrl = (path) => {
|
export const shareUrl = (id) => {
|
||||||
const url = new URL(config.publicBaseUrl + '/' + path, window.location.href)
|
const url = new URL(
|
||||||
|
baseUrl(config.publicBaseUrl + '/' + id),
|
||||||
|
window.location.href
|
||||||
|
)
|
||||||
return url.href
|
return url.href
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue