Add value to Tunnel bypass header

This commit is contained in:
SillyLossy
2023-03-05 14:52:29 +02:00
parent f7f2c3078f
commit 1db21e1a13

View File

@ -117,7 +117,7 @@ let extensions = [];
url.pathname = '/api/extensions';
try {
const getExtensionsResult = await fetch(url, { method: 'GET', headers: { 'Bypass-Tunnel-Reminder': '' } });
const getExtensionsResult = await fetch(url, { method: 'GET', headers: { 'Bypass-Tunnel-Reminder': 'bypass' } });
if (getExtensionsResult.ok) {
const data = await getExtensionsResult.json();