From f7256d2dfd4f7a9ba0490ad3ff2a06770137b784 Mon Sep 17 00:00:00 2001 From: zlenner <119705166+zlenner@users.noreply.github.com> Date: Fri, 20 Jun 2025 13:11:37 +0300 Subject: [PATCH] feat: IPv6 support. (#301) --- 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")