From 4d046c90fa177ef88f384fc174c15c5ac7d7ec51 Mon Sep 17 00:00:00 2001 From: ballaballaballa <8480595+ballaballaballa@users.noreply.github.com> Date: Tue, 28 Oct 2025 20:39:45 +0100 Subject: [PATCH] Fixed client_id for FI. Removed DK as Podme is not available in Denmark. --- podme_api/const.py | 4 +--- podme_api/models.py | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/podme_api/const.py b/podme_api/const.py index 74baec1..e94d28e 100644 --- a/podme_api/const.py +++ b/podme_api/const.py @@ -13,13 +13,11 @@ PodMeRegion.NO: "https://payment.schibsted.no", PodMeRegion.SE: "https://login.schibsted.com", PodMeRegion.FI: "https://login.schibsted.fi", - PodMeRegion.DK: "https://login.schibsted.dk", } PODME_AUTH_CLIENT_ID = { PodMeRegion.NO: "62557b19f552881812b7431c", PodMeRegion.SE: "62557c04db3a6b00de7d7a53", - PodMeRegion.FI: "62557b19f552881812b7431c", # TODO: Check - PodMeRegion.DK: "62557b19f552881812b7431c", # TODO: Check + PodMeRegion.FI: "625546a9db3a6b00de7d7a52", } DEFAULT_REQUEST_TIMEOUT = 15 diff --git a/podme_api/models.py b/podme_api/models.py index e5fb331..1771f64 100644 --- a/podme_api/models.py +++ b/podme_api/models.py @@ -55,7 +55,6 @@ class PodMeRegion(IntEnum): SE = 1 NO = 2 FI = 3 - DK = 4 def __repr__(self): return self.name