mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 00:14:57 +02:00
Fix type error not finding app object
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user