Browse Source

fixed api bug where empty fields weren't being omitted

master
Christopher Ramey 4 years ago
committed by Christopher Ramey
parent
commit
d272cafd2e
  1. 1
      .gitignore
  2. 6
      pages/api.go

1
.gitignore

@ -1,2 +1,3 @@
*.swp
qurl
qurl.db

6
pages/api.go

@ -11,9 +11,9 @@ import (
)
type apijson struct {
URL string `json:"url",omitempty`
Exists bool `json:"exists",omitempty`
Error string `json:"error",omitempty`
URL string `json:"url,omitempty"`
Exists bool `json:"exists,omitempty"`
Error string `json:"error,omitempty"`
}
func (ctx *RootHandler) ServeAPI(w http.ResponseWriter, r *http.Request) {

Loading…
Cancel
Save