mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Fix for localtunnel
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user