Skip to content

Commit 1ee17ce

Browse files
Fixed client_id for FI. Removed DK as Podme is not available in Denmark. (#11)
1 parent 6d2f122 commit 1ee17ce

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

podme_api/const.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@
1313
PodMeRegion.NO: "https://payment.schibsted.no",
1414
PodMeRegion.SE: "https://login.schibsted.com",
1515
PodMeRegion.FI: "https://login.schibsted.fi",
16-
PodMeRegion.DK: "https://login.schibsted.dk",
1716
}
1817
PODME_AUTH_CLIENT_ID = {
1918
PodMeRegion.NO: "62557b19f552881812b7431c",
2019
PodMeRegion.SE: "62557c04db3a6b00de7d7a53",
21-
PodMeRegion.FI: "62557b19f552881812b7431c", # TODO: Check
22-
PodMeRegion.DK: "62557b19f552881812b7431c", # TODO: Check
20+
PodMeRegion.FI: "625546a9db3a6b00de7d7a52",
2321
}
2422

2523
DEFAULT_REQUEST_TIMEOUT = 15

podme_api/models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ class PodMeRegion(IntEnum):
5555
SE = 1
5656
NO = 2
5757
FI = 3
58-
DK = 4
5958

6059
def __repr__(self):
6160
return self.name

0 commit comments

Comments
 (0)