mirror of
https://github.com/OpenSquawk/OpenSquawk
synced 2026-05-15 03:25:40 +08:00
use 6 digit codes for bridge
This commit is contained in:
@@ -8,7 +8,7 @@ export function normalizeBridgeToken(input: unknown) {
|
||||
if (!token) {
|
||||
return null
|
||||
}
|
||||
if (token.length < 8 || token.length > 256) {
|
||||
if (token.length < 6 || token.length > 256) {
|
||||
return null
|
||||
}
|
||||
return token
|
||||
|
||||
Reference in New Issue
Block a user