summary refs log tree commit diff stats
path: root/handlers.go
diff options
context:
space:
mode:
Diffstat (limited to 'handlers.go')
-rw-r--r--handlers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/handlers.go b/handlers.go
index a44c9d8..9722788 100644
--- a/handlers.go
+++ b/handlers.go
@@ -98,7 +98,7 @@ func apiTagsHandler(w http.ResponseWriter, r *http.Request) {
 	tags := vars["tags"]
 
 	w.Header().Set("Content-Type", htmlutf8)
-	n, err := w.Write([]byte("api/" + format + "/" + tags))
+	n, err := w.Write([]byte("api/" + format + "/tags/" + tags))
 	if err != nil || n == 0 {
 		log.Printf("Error writing to HTTP stream: %v\n", err)
 	}