forked from extern/egroupware
Fix type error not finding app object
This commit is contained in:
parent
d16b91c901
commit
321aebf199
@ -1269,6 +1269,6 @@ var fw_base = (function(){ "use strict"; return Class.extend(
|
||||
*/
|
||||
isAnInternalApp: function(_app)
|
||||
{
|
||||
return _app.appName != _app.internalName;
|
||||
return _app && _app.appName != _app.internalName;
|
||||
}
|
||||
});}).call(this);
|
||||
|
Loading…
Reference in New Issue
Block a user