From 85cd78607297319701a9be4d8a6b88cc1049db28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Lidwin?= Date: Fri, 29 Aug 2025 16:46:43 +0200 Subject: [PATCH] fix: update graphql host --- legendary/api/egs.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/legendary/api/egs.py b/legendary/api/egs.py index 025fc77..d38603d 100644 --- a/legendary/api/egs.py +++ b/legendary/api/egs.py @@ -28,10 +28,8 @@ class EPCAPI: _ecommerce_host = 'ecommerceintegration-public-service-ecomprod02.ol.epicgames.com' _datastorage_host = 'datastorage-public-service-liveegs.live.use1a.on.epicgames.com' _library_host = 'library-service.live.use1a.on.epicgames.com' - # Using the actual store host with a user-agent newer than 14.0.8 leads to a CF verification page, - # but the dedicated graphql host works fine. - # _store_gql_host = 'launcher.store.epicgames.com' - _store_gql_host = 'graphql.epicgames.com' + + _store_gql_host = 'launcher.store.epicgames.com' _artifact_service_host = 'artifact-public-service-prod.beee.live.use1a.on.epicgames.com' def __init__(self, lc='en', cc='US', timeout=10.0):