From 6d652e292f56180b305474237701e9307e3fdc56 Mon Sep 17 00:00:00 2001 From: Dicken Date: Fri, 19 Jun 2026 01:38:14 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Amazon=20Prime=20ID=209|119=20kombiniert?= =?UTF-8?q?=20(Duplikat-Bug=20bei=20TMDb),=20Paramount+=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/tools/media/routes.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/backend/src/tools/media/routes.js b/backend/src/tools/media/routes.js index f5e5671..5c636f3 100644 --- a/backend/src/tools/media/routes.js +++ b/backend/src/tools/media/routes.js @@ -488,12 +488,13 @@ router.get('/xrel-cached', authenticate, (req, res) => { // ── Streaming Top 10 pro Anbieter ────────────────────────────────────────────── // TMDb Watch-Provider-IDs für Deutschland (watch_region=DE) const STREAMING_PROVIDERS = [ - { id: 'netflix', label: 'Netflix', tmdbId: 8 }, - { id: 'disney', label: 'Disney+', tmdbId: 337 }, - { id: 'prime', label: 'Amazon Prime Video', tmdbId: 119 }, - { id: 'appletv', label: 'Apple TV+', tmdbId: 350 }, - { id: 'wow', label: 'WOW (Sky)', tmdbId: 30 }, - { id: 'rtlplus', label: 'RTL+', tmdbId: 421 }, + { id: 'netflix', label: 'Netflix', tmdbId: '8' }, + { id: 'disney', label: 'Disney+', tmdbId: '337' }, + { id: 'prime', label: 'Amazon Prime Video', tmdbId: '9|119' }, + { id: 'appletv', label: 'Apple TV+', tmdbId: '350' }, + { id: 'paramount', label: 'Paramount+', tmdbId: '531' }, + { id: 'wow', label: 'WOW (Sky)', tmdbId: '30' }, + { id: 'rtlplus', label: 'RTL+', tmdbId: '421' }, ]; router.get('/streaming/providers', authenticate, (req, res) => {