From a2e015aa5338c6bf4533fe821c1a21de520a1e9f Mon Sep 17 00:00:00 2001 From: foxixus Date: Thu, 14 Aug 2025 15:19:20 +0000 Subject: [PATCH] Bug fix --- .env.example | 1 - pkg/config/config.go | 4 ---- 2 files changed, 5 deletions(-) diff --git a/.env.example b/.env.example index 6993059..961781c 100644 --- a/.env.example +++ b/.env.example @@ -16,7 +16,6 @@ GMAIL_APP_PASSWORD= # Players LUMEX_URL= ALLOHA_TOKEN= -VIBIX_TOKEN # Torrents (RedAPI) REDAPI_BASE_URL=http://redapi.cfhttp.top diff --git a/pkg/config/config.go b/pkg/config/config.go index c7a9376..eda0414 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -23,8 +23,6 @@ type Config struct { GoogleClientSecret string GoogleRedirectURL string FrontendURL string - VibixHost string - VibixToken string } func New() *Config { @@ -48,8 +46,6 @@ func New() *Config { GoogleClientSecret: getEnv(EnvGoogleClientSecret, ""), GoogleRedirectURL: getEnv(EnvGoogleRedirectURL, ""), FrontendURL: getEnv(EnvFrontendURL, ""), - VibixHost: getEnv(EnvVibixHost, DefaultVibixHost), - VibixToken: getEnv(EnvVibixToken, ""), } }