From 8f184fcb665857a582faf0993cf8523b8a0401a0 Mon Sep 17 00:00:00 2001 From: Rafael Moraes <50295204+glomatico@users.noreply.github.com> Date: Mon, 27 Apr 2026 09:17:36 -0300 Subject: [PATCH] Remove '-28' from X-Apple-Store-Front header --- gamdl/api/itunes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamdl/api/itunes.py b/gamdl/api/itunes.py index f2bd042..e9ac0ad 100644 --- a/gamdl/api/itunes.py +++ b/gamdl/api/itunes.py @@ -134,7 +134,7 @@ class ItunesApi: response = await self.client.get( ITUNES_PAGE_API_URL.format(media_type=media_type, media_id=media_id), headers={ - "X-Apple-Store-Front": f"{self.storefront_id}-28,32 t:music31", + "X-Apple-Store-Front": f"{self.storefront_id},32 t:music31", }, ) response.raise_for_status()