Add more URLs for consent cookie

This commit is contained in:
Preston 2021-04-07 22:40:35 -04:00
parent 3048e39106
commit 01da5277ee
1 changed files with 12 additions and 10 deletions

View File

@ -249,16 +249,18 @@ function createWindow (useProxy = false, proxyUrl = '') {
})
}
mainWindow.webContents.session.cookies.set({
url: 'https://www.youtube.com',
name: 'CONSENT',
value: 'YES+'
})
mainWindow.webContents.session.cookies.set({
url: 'https://consent.youtube.com',
name: 'CONSENT',
value: 'YES+'
// Set CONSENT cookie on reasonable domains
[
'http://www.youtube.com',
'https://www.youtube.com',
'http://youtube.com',
'https://youtube.com'
].forEach(url => {
mainWindow.webContents.session.cookies.set({
url: url,
name: 'CONSENT',
value: 'YES+'
})
})
settingsDb.findOne({