openidec

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 23659b2ac91f40b1334dad6816709aced20e70c6
parent 3199a7d96160c521a6c5f9c3de08a1f40d60d4c2
Author: Petr Razumov <razumov.petr@wb.ru>
Date:   Tue,  4 Apr 2023 16:46:49 +0300

fix: remove trailing newline

Diffstat:
Mcmd/idecd/main.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/idecd/main.go b/cmd/idecd/main.go @@ -230,7 +230,7 @@ func main() { return } ii.Info.Printf("/u/point/%s/%s POST request", pauth, tmsg) - fmt.Fprintln(w, PointMsg(edb, db, udb, pauth, tmsg)) + fmt.Fprint(w, PointMsg(edb, db, udb, pauth, tmsg)) }) http.HandleFunc("/x/c/", func(w http.ResponseWriter, r *http.Request) { enames := strings.Split(r.URL.Path[5:], "/")