u
Anirudh Oppiliappan x@icyphox.sh
Tue, 26 Sep 2023 23:15:54 +0300
1 files changed,
2 insertions(+),
1 deletions(-)
jump to
M
masto.go
→
masto.go
@@ -10,9 +10,10 @@ )
func showoauthlogin(rw http.ResponseWriter, r *http.Request) { templinfo := make(map[string]interface{}) + templinfo = getInfo(r) templinfo["ClientID"] = r.URL.Query().Get("client_id") templinfo["RedirectURI"] = r.URL.Query().Get("redirect_uri") - templinfo = getInfo(r) + if err := readviews.Execute(rw, "oauthlogin.html", templinfo); err != nil { elog.Println(err) }