From eef62f405825e825f7779ea545de08306224c50c Mon Sep 17 00:00:00 2001 From: cubicroot Date: Sun, 13 Feb 2022 13:18:13 +0100 Subject: [PATCH] Use #39 --- internal/authentication/token.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/authentication/token.go b/internal/authentication/token.go index 1203fc6..7e91d6f 100644 --- a/internal/authentication/token.go +++ b/internal/authentication/token.go @@ -7,7 +7,7 @@ import ( var ( tokenCharacters = []byte("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789") - regularTokenLength = 63 // This length includes the prefix (one character). + regularTokenLength = 64 // This length includes the prefix (one character). compatTokenLength = 15 // This length includes the prefix (one character). applicationTokenPrefix = "A" )