From bf849e1cbc5ea5bfd8bd1d4e5e43f79e70fa288a Mon Sep 17 00:00:00 2001 From: orangix Date: Mon, 19 Jan 2026 19:17:36 +0100 Subject: [PATCH] remove FIBER_PREFORK --- utils/config.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/utils/config.go b/utils/config.go index 6526e39..096e68a 100644 --- a/utils/config.go +++ b/utils/config.go @@ -11,7 +11,6 @@ type config struct { ImgurId string ProtocolDetection bool Secure bool - FiberPrefork bool ForceWebp bool ImageCache bool CleanupInterval time.Duration @@ -39,7 +38,6 @@ func LoadConfig() { ImgurId: envString("IMGUR_CLIENT_ID", "546c25a59c58ad7"), ProtocolDetection: envBool("PROTOCOL_DETECTION"), Secure: envBool("SECURE"), - FiberPrefork: envBool("FIBER_PREFORK"), ForceWebp: envBool("FORCE_WEBP"), Privacy: map[string]interface{}{ "set": os.Getenv("PRIVACY_NOT_COLLECTED") != "",