mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-06-06 07:37:19 +02:00
Remote Play: don't accept candidates with port 0
This commit is contained in:
parent
97ec29faa0
commit
fe609034d6
@ -42,7 +42,7 @@ export class XhomeInterceptor {
|
||||
|
||||
const processPorts = (port: number): number[] => {
|
||||
const ports = new Set<number>();
|
||||
ports.add(port);
|
||||
port && ports.add(port);
|
||||
ports.add(9002);
|
||||
|
||||
return Array.from(ports);
|
||||
|
Loading…
x
Reference in New Issue
Block a user