修改BUG:个人中心保存样式不生效 closed #IVF0F

#Issue
https://gitee.com/LongbowEnterprise/dashboard/issues?id=IVF0F
This commit is contained in:
Argo Zhang 2019-04-15 18:46:09 +08:00
parent 0f5acb2189
commit 238a630648
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ namespace Bootstrap.DataAccess
public static bool SaveUserCssByName(string userName, string cssName)
{
var ret = DbContextManager.Create<User>().SaveUserCssByName(userName, cssName);
if (ret) CacheCleanUtility.ClearCache(cacheKey: $"{RetrieveUsersDataKey}*");
if (ret) CacheCleanUtility.ClearCache(cacheKey: $"{RetrieveUsersByNameDataKey}*");
return ret;
}