Fix type error not finding app object

This commit is contained in:
Hadi Nategh 2020-10-23 11:11:42 +02:00
parent d16b91c901
commit 321aebf199

View File

@ -1269,6 +1269,6 @@ var fw_base = (function(){ "use strict"; return Class.extend(
*/ */
isAnInternalApp: function(_app) isAnInternalApp: function(_app)
{ {
return _app.appName != _app.internalName; return _app && _app.appName != _app.internalName;
} }
});}).call(this); });}).call(this);