Empty list plugin on the page.
File StandardPluginResolver.cs
lines 86, 87
I think it's wrong.
public Dictionary<Type, string> GetPlugins()
{
string cacheKey = "plugins-" + Path;
if (CacheManager.Get(cacheKey) == null)
{
....
}
return new Dictionary<Type, string>();
//return (Dictionary<Type, string>)CacheManager.Get(cacheKey);
}
This seems to be fixed like this:
public Dictionary<Type, string> GetPlugins()
{
string cacheKey = "plugins-" + Path;
if (CacheManager.Get(cacheKey) == null)
{
....
}
//return new Dictionary<Type, string>();
return (Dictionary<Type, string>)CacheManager.Get(cacheKey);
}
:-)