Fix DirectoryResource.Contains()

master
Harald Wolff 2019-09-02 09:58:36 +02:00
parent 05ef2c8374
commit 943e889cf9
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ namespace ln.http.resources
if (injectedResources.ContainsKey(name))
return true;
String cPath = PathHelper.FindPath(searchPaths);
String cPath = PathHelper.FindPath(searchPaths.Select((p) => System.IO.Path.Combine(p, name)));
if ((cPath == null) && cache.ContainsKey(name))
cache.Remove(name);