瀏覽代碼

修复取消返现操作redis异常

lcl 1 年之前
父節點
當前提交
33cd80dcc4
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Util/RedisDbconn.cs

+ 1 - 1
Util/RedisDbconn.cs

@@ -149,7 +149,7 @@ namespace MySystem
         #region 移除列表
         public long RemoveFromList(string key, object value, int count = 1)
         {            
-            return csredis.LRem(key, count, value);
+            return RedisHelper.LRem(key, count, value);
         }
         #endregion