diff options
Diffstat (limited to 'ipn/localapi/localapi.go')
| -rw-r--r-- | ipn/localapi/localapi.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ipn/localapi/localapi.go b/ipn/localapi/localapi.go index a1b7da46f..df9809f54 100644 --- a/ipn/localapi/localapi.go +++ b/ipn/localapi/localapi.go @@ -1374,6 +1374,15 @@ func (h *Handler) servePrefs(w http.ResponseWriter, r *http.Request) { http.Error(w, err.Error(), http.StatusBadRequest) return } + if mp.AutomountSharesSet { + // Set AutomountShares user to the connecting username. + var err error + mp.AutomountShares.AsUser, err = h.getUsername() + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + } var err error prefs, err = h.b.EditPrefs(mp) if err != nil { |
