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
|
||||
# DEFAULT VALUE: http://{{IP}}:{{PORT}}/
|
||||
WebAddress: http://{{IP}}:{{PORT}}/
|
||||
WebAddress: "http://{{IP}}:{{PORT}}/"
|
||||
|
||||
# Can users have their own web page
|
||||
# DEFAULT VALUE: false
|
||||
|
|
|
@ -34,9 +34,9 @@ type DjConfig struct {
|
|||
HighestVolume float32
|
||||
}
|
||||
Web struct {
|
||||
WebBrowser bool
|
||||
WebPort int
|
||||
WebAddress string
|
||||
WebBrowser bool
|
||||
WebPort int
|
||||
WebAddress string
|
||||
CustomWebPage bool
|
||||
}
|
||||
Aliases struct {
|
||||
|
|
Reference in a new issue