Fix MaxURL length in db (2048)

This commit is contained in:
2025-03-13 23:26:58 +01:00
parent 232fe6406a
commit 1480aa0a03
8 changed files with 926 additions and 20 deletions

View File

@ -13,8 +13,6 @@ public static class TokenGen
public static string CreateToken(string prefix, params string[] identifiers)
{
if (prefix.Length + 1 >= MaximumLength - MinimumLength)
throw new ArgumentException("Prefix to long to create Token of meaningful length.");