Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
cyq1162 committed Jul 10, 2016
1 parent 4f436aa commit 9a87ab8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Action/AppConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,12 @@ public static string SchemaMapPath
{
get
{
return GetApp("SchemaMapPath", string.Empty);
string path = GetApp("SchemaMapPath", string.Empty);
if (!path.EndsWith("\\"))
{
path = path.TrimEnd('/') + "\\";
}
return path;
}
set
{
Expand Down Expand Up @@ -592,7 +597,7 @@ public static int DefaultCacheTime
}
}

private static int _IsAutoCache= -1;
private static int _IsAutoCache = -1;
/// <summary>
/// 是否智能缓存数据(默认开启)
/// </summary>
Expand Down

0 comments on commit 9a87ab8

Please sign in to comment.