Fix lowest server port

This commit is contained in:
Chocobozzz 2023-05-19 13:57:44 +02:00
parent def4ea4f38
commit be61627067
No known key found for this signature in database
GPG Key ID: 583A612D890159BE

View File

@ -325,7 +325,7 @@ export class PeerTubeServer {
} }
private randomServer () { private randomServer () {
const low = 10 const low = 2500
const high = 10000 const high = 10000
return randomInt(low, high) return randomInt(low, high)