use 6 digit codes for bridge

This commit is contained in:
itsrubberduck
2026-02-16 15:47:12 +01:00
parent 8e01936abb
commit 86de549adb
4 changed files with 114 additions and 13 deletions

View File

@@ -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