From e52cb4a7f8bfaa255cb8b530fbebd03ded010b8b Mon Sep 17 00:00:00 2001 From: TOomaAh Date: Wed, 16 Apr 2025 03:12:24 +0200 Subject: [PATCH] refactor(tvdb): fix apikey --- server/api/tvdb/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/api/tvdb/index.ts b/server/api/tvdb/index.ts index 894678de..3459f8d8 100644 --- a/server/api/tvdb/index.ts +++ b/server/api/tvdb/index.ts @@ -115,8 +115,7 @@ class Tvdb extends ExternalAPI implements TvShowIndexer { async login(): Promise { let body: { apiKey: string; pin?: string } = { - apiKey: - process.env.TVDB_API_KEY || 'e4428e99-1c35-4500-9534-e13c1193b428', + apiKey: process.env.TVDB_API_KEY || '', }; if (this.pin) {