Browse Source

Guard against pinging YP when offline. Closes #600

pull/850/head
Gabe Kangas 5 years ago
parent
commit
1509a65167
  1. 6
      yp/yp.go

6
yp/yp.go

@ -64,6 +64,12 @@ func (yp *YP) ping() { @@ -64,6 +64,12 @@ func (yp *YP) ping() {
return
}
// Hack: Don't allow ping'ing when offline.
// It shouldn't even be trying to, but on some instances the ping timer isn't stopping.
if !getStatus().Online {
return
}
myInstanceURL := data.GetServerURL()
if myInstanceURL == "" {
log.Warnln("Server URL not set in the configuration. Directory access is disabled until this is set.")

Loading…
Cancel
Save