fix(Client:MongoDB): 修复MongoDB 客户端 App 值为 'BA'

This commit is contained in:
Argo-SHCX 2020-05-20 14:47:59 +08:00
parent 045b5861e7
commit fde8231177
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ namespace Bootstrap.Client.DataAccess.MongoDB
if (ret != null)
{
if (string.IsNullOrEmpty(ret.Icon)) ret.Icon = "default.jpg";
if (string.IsNullOrEmpty(ret.App)) ret.App = "0";
if (string.IsNullOrEmpty(ret.App)) ret.App = "BA";
}
}
return ret;