all repos — honk @ 9665a397ba25fde1823f9e2052a3e06d8e8cbf6e

my fork of honk

u
Anirudh Oppiliappan x@icyphox.sh
Tue, 26 Sep 2023 23:15:54 +0300
commit

9665a397ba25fde1823f9e2052a3e06d8e8cbf6e

parent

ed1efcf8c3909aa68a395da966d8dd99dfec5f59

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M masto.gomasto.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) }