···27 case http.MethodPost:
28 handle := r.FormValue("handle")
29 returnURL := r.FormValue("return_url")
30- addAccount := r.FormValue("add_account") == "true"
3132 // when users copy their handle from bsky.app, it tends to have these characters around it:
33 //
···51 return
52 }
5354- if err := s.oauth.SetAuthReturn(w, r, returnURL, addAccount); err != nil {
55 l.Error("failed to set auth return", "err", err)
56 }
57
···27 case http.MethodPost:
28 handle := r.FormValue("handle")
29 returnURL := r.FormValue("return_url")
03031 // when users copy their handle from bsky.app, it tends to have these characters around it:
32 //
···50 return
51 }
5253+ if err := s.oauth.SetAuthReturn(w, r, returnURL); err != nil {
54 l.Error("failed to set auth return", "err", err)
55 }
56