nit picking of legacy

This commit is contained in:
6543 2022-11-12 00:08:56 +01:00
parent b759aaf673
commit cba996978e
No known key found for this signature in database
GPG key ID: B8BE6D610E61C862
2 changed files with 2 additions and 4 deletions

View file

@ -27,7 +27,7 @@ const (
fileCacheTimeout = 5 * time.Minute
// fileCacheSizeLimit limits the maximum file size that will be cached, and is set to 1 MB by default.
fileCacheSizeLimit = int64(1024 * 1024)
fileCacheSizeLimit = int64(1000 * 1000)
)
type FileResponse struct {