Put quotation marks around WebAddress string in config.gcfg
This commit is contained in:
parent
a48d10a1cc
commit
edba4d447a
|
@ -68,7 +68,7 @@ WebPort: 9563
|
||||||
|
|
||||||
# Web address to provide links for
|
# Web address to provide links for
|
||||||
# DEFAULT VALUE: http://{{IP}}:{{PORT}}/
|
# DEFAULT VALUE: http://{{IP}}:{{PORT}}/
|
||||||
WebAddress: http://{{IP}}:{{PORT}}/
|
WebAddress: "http://{{IP}}:{{PORT}}/"
|
||||||
|
|
||||||
# Can users have their own web page
|
# Can users have their own web page
|
||||||
# DEFAULT VALUE: false
|
# DEFAULT VALUE: false
|
||||||
|
|
|
@ -34,9 +34,9 @@ type DjConfig struct {
|
||||||
HighestVolume float32
|
HighestVolume float32
|
||||||
}
|
}
|
||||||
Web struct {
|
Web struct {
|
||||||
WebBrowser bool
|
WebBrowser bool
|
||||||
WebPort int
|
WebPort int
|
||||||
WebAddress string
|
WebAddress string
|
||||||
CustomWebPage bool
|
CustomWebPage bool
|
||||||
}
|
}
|
||||||
Aliases struct {
|
Aliases struct {
|
||||||
|
|
Reference in a new issue