krz/skunky-art
Alternative privacy frontend for DeviantArt.
clone: git clone https://gitbay.org/krz/skunky-art.git
40d405f318a109aad5e7de7ad71fedcc04bb0e86
verified · cmc
author: Christian Cleberg <hello@cleberg.net> · 2026-07-15T07:23:59Z
app/config.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) @@ -88,7 +88,9 @@ func ExecuteConfig() { lifetimeParsed = duration * int64(num) } - CFG.Cache.MaxSize *= 1024 ^ 2 + // max-size is documented in megabytes. This was 1024^2, which in Go is + // XOR (1026), not exponentiation — so the cap was ~1000x too small. + CFG.Cache.MaxSize *= 1024 * 1024 go InitCacheSystem() }