diff options
Diffstat (limited to 'ipn/localapi/cert.go')
| -rw-r--r-- | ipn/localapi/cert.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipn/localapi/cert.go b/ipn/localapi/cert.go index 447c3bc3c..e1704cb49 100644 --- a/ipn/localapi/cert.go +++ b/ipn/localapi/cert.go @@ -23,7 +23,7 @@ func (h *Handler) serveCert(w http.ResponseWriter, r *http.Request) { http.Error(w, "internal handler config wired wrong", 500) return } - pair, err := h.b.GetCertPEM(r.Context(), domain) + pair, err := h.b.GetCertPEM(r.Context(), domain, true) if err != nil { // TODO(bradfitz): 500 is a little lazy here. The errors returned from // GetCertPEM (and everywhere) should carry info info to get whether |
