openidec

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

commit 4659b51b47fdef5ec8fb4a0f33fa7a55bf8749dd
parent 0e8433ce611e55462c11ee86ee857fb7d2064e38
Author: Peter Kosyh <p.kosyh@gmail.com>
Date:   Sun,  6 Sep 2020 20:08:00 +0300

fix in format string

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

diff --git a/ii-node/main.go b/ii-node/main.go @@ -177,7 +177,7 @@ func main() { m := db.Get(id) ii.Info.Printf("/m/%s %s", id, m) if m != nil { - fmt.Fprintf(w, m.String()) + fmt.Fprintf(w, "%s", m.String()) } }) http.HandleFunc("/e/", func(w http.ResponseWriter, r *http.Request) {