Fix for localtunnel

This commit is contained in:
SillyLossy
2023-03-04 23:32:32 +02:00
parent 3616895190
commit f6aa6609cd

View File

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