mirror of
https://github.com/HeyPuter/puter.git
synced 2025-01-23 22:40:20 +08:00
Fix case when main domain is a subdomain
This commit is contained in:
parent
eb18e74e88
commit
f9b375a39b
@ -290,8 +290,9 @@ class WebServerService extends BaseService {
|
||||
if ( req.path === '/signup' || req.path === '/login' ) {
|
||||
res.setHeader('Access-Control-Allow-Origin', origin ?? '*');
|
||||
}
|
||||
console.log('subdomains', req.subdomains);
|
||||
// Website(s) to allow to connect
|
||||
if ( req.subdomains[0] === 'api' ) {
|
||||
if ( req.subdomains[req.subdomains.length-1] === 'api' ) {
|
||||
res.setHeader('Access-Control-Allow-Origin', origin ?? '*');
|
||||
res.setHeader('Access-Control-Allow-Credentials', 'true');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user