forked from extern/egroupware
Avoid error if _filters is not set
This commit is contained in:
parent
5b873215b0
commit
d21e2b2dd7
@ -277,7 +277,7 @@ app.classes.mail = AppJS.extend(
|
||||
{
|
||||
// Only cache first chunk of rows, if no search filter
|
||||
if((!query_context || !query_context.start) && query_context.count == 0 && !(
|
||||
query_context.self._filters.search || false)
|
||||
!query_context.self._filters || query_context.self._filters.search || false)
|
||||
)
|
||||
{
|
||||
// Make sure keys match, even if some filters are not defined
|
||||
|
Loading…
Reference in New Issue
Block a user