From 7ebca77f72ecf6f7cb05d646c9c707da98e2b4f2 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Wed, 14 Jun 2017 15:59:45 +0300 Subject: syz-hub: fix copy-paste error in httpSummary() Also mention Alexander Popov in AUTHORS and CONTRIBUTORS. --- syz-hub/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'syz-hub') diff --git a/syz-hub/http.go b/syz-hub/http.go index 1dde8e98f..3ee6ff686 100644 --- a/syz-hub/http.go +++ b/syz-hub/http.go @@ -41,7 +41,7 @@ func (hub *Hub) httpSummary(w http.ResponseWriter, r *http.Request) { } for name, mgr := range hub.st.Managers { total.Added += mgr.Added - total.Deleted += mgr.Added + total.Deleted += mgr.Deleted total.New += mgr.New data.Managers = append(data.Managers, UIManager{ Name: name, -- cgit mrf-deployment