master
Harald Wolff 2019-03-26 12:52:42 +01:00
parent 97ff209cb7
commit 70311e4c94
1 changed files with 6 additions and 0 deletions

View File

@ -122,6 +122,12 @@ namespace ln.http.resources
{
return (current as TemplateResource).Template;
}
if (Container is TemplateProvider)
{
return (Container as TemplateProvider).FindTemplate(templatePath);
}
return null;
}