gog: only unsubscribe from newsletter if a game was claimed?

This commit is contained in:
Ralf Vogler 2023-02-09 16:53:42 +01:00
parent 11a28f0c73
commit d3e4c58c80

8
gog.js
View file

@ -122,9 +122,11 @@ try {
db.data[user][title].status ||= status; db.data[user][title].status ||= status;
notify_games.push({ title, url, status }); notify_games.push({ title, url, status });
console.log("Unsubscribe from 'Promotions and hot deals' newsletter"); if (status == 'claimed') { // TODO check if this is enough or if newsleter is enabled if 'existed'
await page.goto('https://www.gog.com/en/account/settings/subscriptions'); console.log("Unsubscribe from 'Promotions and hot deals' newsletter");
await page.locator('li:has-text("Promotions and hot deals") label').uncheck(); await page.goto('https://www.gog.com/en/account/settings/subscriptions');
await page.locator('li:has-text("Promotions and hot deals") label').uncheck();
}
} }
} catch (error) { } catch (error) {
console.error(error); // .toString()? console.error(error); // .toString()?