[FIX] checkServer token

This commit is contained in:
Gravita 2024-03-01 14:18:09 +07:00
parent 7a96e67517
commit ead4689bcf
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public class AuthManager {
.claim("serverName", serverName)
.claim("authId", authId)
.claim("tokenType", "checkServer")
.claim("isPublic", publicOnly ? "true" : "false")
.claim("isPublic", publicOnly)
.signWith(server.keyAgreementManager.ecdsaPrivateKey)
.compact();
}