fix javascript error if data not available

This commit is contained in:
Ralf Becker 2014-02-17 14:53:53 +00:00
parent 639fd82199
commit 6a1b0e846d

View File

@ -271,7 +271,9 @@ var et2_arrayMgr = Class.extend(
}
catch(e)
{
egw.debug("error", typeof e == 'object' ? e.message : e);
// only log error, as they are no real errors but missing data
egw.debug("log", typeof e == 'object' ? e.message : e);
_ident = null;
}
}
}