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({ // Set CONSENT cookie on reasonable domains
url: 'https://www.youtube.com', [
name: 'CONSENT', 'http://www.youtube.com',
value: 'YES+' 'https://www.youtube.com',
}) 'http://youtube.com',
'https://youtube.com'
mainWindow.webContents.session.cookies.set({ ].forEach(url => {
url: 'https://consent.youtube.com', mainWindow.webContents.session.cookies.set({
name: 'CONSENT', url: url,
value: 'YES+' name: 'CONSENT',
value: 'YES+'
})
}) })
settingsDb.findOne({ settingsDb.findOne({