From d51f7310d97cfe57206eb82910a0aad5a181924d Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Thu, 7 Sep 2023 13:56:37 +0200 Subject: [PATCH] gog: fix #200, uncheck 'Marketing communications through Trusted Partners' --- gog.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gog.js b/gog.js index 4943ff8..fa82c8a 100644 --- a/gog.js +++ b/gog.js @@ -130,6 +130,7 @@ try { if (status == 'claimed' && !cfg.gog_newsletter) { console.log("Unsubscribe from 'Promotions and hot deals' newsletter"); await page.goto('https://www.gog.com/en/account/settings/subscriptions'); + await page.locator('li:has-text("Marketing communications through Trusted Partners") label').uncheck(); await page.locator('li:has-text("Promotions and hot deals") label').uncheck(); } }