mirror of https://github.com/tidwall/tile38.git
Bugfix
This commit is contained in:
parent
f11aedb948
commit
9d072ea247
|
@ -70,6 +70,7 @@ Tile38 can be compiled and used on Linux, OSX, Windows, FreeBSD, and probably ot
|
|||
|
||||
To build everything simply:
|
||||
```
|
||||
$ git tag <major>.<minor>.<fix>
|
||||
$ make
|
||||
```
|
||||
|
||||
|
|
|
@ -234,10 +234,10 @@ func (config *Config) write(writeProperties bool) {
|
|||
}
|
||||
}
|
||||
if config._announceIPP != "" {
|
||||
m[AutoGC] = config._announceIPP
|
||||
m[AnnounceIP] = config._announceIPP
|
||||
}
|
||||
if config._announcePortP != "" {
|
||||
m[AutoGC] = config._announcePortP
|
||||
m[AnnouncePort] = config._announcePortP
|
||||
}
|
||||
data, err := json.MarshalIndent(m, "", "\t")
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in New Issue