Put quotation marks around WebAddress string in config.gcfg

This commit is contained in:
MichaelOultram 2015-08-10 19:08:11 +01:00
parent a48d10a1cc
commit edba4d447a
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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 {