diff --git a/go/server.go b/go/server.go index a1efdf2..ca38700 100644 --- a/go/server.go +++ b/go/server.go @@ -194,7 +194,9 @@ func handleExactPathRequest(c *gin.Context, info HivePathInfo) { } if fileInfo.IsDir() { - handleDirectory(c, filePath) + // handleDirectory(c, filePath) + // Return an empty response for directory requests + c.String(http.StatusOK, "") } else { handleSingleFile(c, filePath) }