Browse Source

Merge pull request #3665 from vgeta/3450-fix

Fixes Issue #3450
Victor Vieux 11 years ago
parent
commit
69be8adb68
1 changed files with 1 additions and 1 deletions
  1. 1 1
      api.go

+ 1 - 1
api.go

@@ -1082,7 +1082,7 @@ func makeHttpHandler(srv *Server, logging bool, localMethod string, localRoute s
 		}
 		}
 
 
 		if version == 0 || version > APIVERSION {
 		if version == 0 || version > APIVERSION {
-			w.WriteHeader(http.StatusNotFound)
+			http.Error(w, fmt.Errorf("client and server don't have same version (client : %g, server: %g)", version, APIVERSION).Error(), http.StatusNotFound)
 			return
 			return
 		}
 		}