Accept 16-character subscription secrets for gateway presence
All checks were successful
Build and Deploy Gateway / build-and-push (push) Successful in 12s
Build and Deploy Gateway / deploy (push) Successful in 1s

This commit is contained in:
2026-07-11 15:18:22 +03:00
parent 0ab912c64c
commit a58fb26e4f
2 changed files with 8 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ function subscriptionSecret(subscriptionUrl) {
pathSegments.at(-1),
]
.map((value) => String(value || '').trim())
.filter((value) => value.length >= 24);
.filter((value) => value.length >= 16);
if (!candidates.length) return '';
url.hash = '';