From fa31bfbbe99e04e386b4af2d71d633e2b6823c0f Mon Sep 17 00:00:00 2001 From: Inhwan Kim <42035653+phoebe7075@users.noreply.github.com> Date: Sun, 12 Jul 2026 17:35:33 +0900 Subject: [PATCH] fix: update Korean trade site host (#1857) --- main/src/proxy.ts | 2 +- renderer/src/web/Config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main/src/proxy.ts b/main/src/proxy.ts index 94b56ced..c52f4915 100644 --- a/main/src/proxy.ts +++ b/main/src/proxy.ts @@ -6,7 +6,7 @@ const PROXY_HOSTS = [ { host: 'www.pathofexile.com', official: true }, { host: 'ru.pathofexile.com', official: true }, { host: 'pathofexile.tw', official: true }, - { host: 'poe.game.daum.net', official: true }, + { host: 'poe.kakaogames.com', official: true }, { host: 'poe.ninja', official: false }, { host: 'www.poeprices.info', official: false }, ] diff --git a/renderer/src/web/Config.ts b/renderer/src/web/Config.ts index f14954a9..c4f361f9 100644 --- a/renderer/src/web/Config.ts +++ b/renderer/src/web/Config.ts @@ -92,7 +92,7 @@ export function poeWebApi () { case 'en': return 'www.pathofexile.com' case 'ru': return 'ru.pathofexile.com' case 'cmn-Hant': return 'pathofexile.tw' - case 'ko': return 'poe.game.daum.net' + case 'ko': return 'poe.kakaogames.com' } }