Api: Avoid infinite loop if requested file does not actually provide the class

This commit is contained in:
nathangray 2021-03-26 09:06:34 -06:00
parent 026b088dd0
commit b4dd62de69

View File

@ -401,7 +401,10 @@ egwFnct.prototype.setValue = function(_value)
// cache for a day, better then no invalidation
egw.includeJS("/"+parts[1]+"/js/app.js?"+((new Date()).valueOf()/86400|0).toString(), function ()
{
resolve(this.setValue(_value));
if(typeof app.classes[parts[i]] !== "undefined")
{
resolve(this.setValue(_value));
}
}.bind(this), self, egw.webserverUrl);
}.bind(this));
}