From 534075af326609bc74e18e9059a719cdd76d8eb9 Mon Sep 17 00:00:00 2001 From: zlenner Date: Thu, 19 Jun 2025 16:25:28 +0300 Subject: [PATCH] IPv6 support. --- src/cmd/rest.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cmd/rest.go b/src/cmd/rest.go index 9189d30..6695407 100644 --- a/src/cmd/rest.go +++ b/src/cmd/rest.go @@ -40,6 +40,7 @@ func restServer(_ *cobra.Command, _ []string) { app := fiber.New(fiber.Config{ Views: engine, BodyLimit: int(config.WhatsappSettingMaxVideoSize), + Network: "tcp", }) app.Static("/statics", "./statics")