Explorar o código

获取jwt的token修复

lcl hai 1 ano
pai
achega
b0904a6607
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      AppStart/PublicFunction.cs

+ 1 - 1
AppStart/PublicFunction.cs

@@ -144,7 +144,7 @@ namespace MySystem
 
         public static string AppToken(int UserId, string JwtSecret, string JwtIss, string tag = "")
         {
-            string Token = RedisDbconn.Instance.Get<string>("apptoken:" + UserId);
+            string Token = RedisDbconn.Instance.Get<string>("apptoken:" + UserId + tag);
             if(!string.IsNullOrEmpty(Token))
             {
                 return Token;