diff options
Diffstat (limited to 'cache.go')
-rw-r--r-- | cache.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.go b/cache.go index 120e93e..9755877 100644 --- a/cache.go +++ b/cache.go @@ -93,7 +93,7 @@ func (cache *cacheWrapper) bap(requestPath string) error { bytes, err = pkgsQuery(format) default: if requestPath == "/" { - bytes, err = ioutil.ReadFile("web/index.txt") + bytes, err = ioutil.ReadFile("static/index.txt") } else { err = errors.New("Invalid Query Type") } |