mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
fix total <= 0 returned for get_rows call with given UIDs, stalling refresh of queued push updated in mail app
This commit is contained in:
parent
df22d23545
commit
1f18ef0a36
@ -1515,7 +1515,9 @@ class Mail
|
||||
}
|
||||
else
|
||||
{
|
||||
$sortResult = (is_array($_thisUIDOnly) ? $_thisUIDOnly:(array)$_thisUIDOnly);
|
||||
$sortResult = (array)$_thisUIDOnly;
|
||||
// we must return a total: if we return only certain UIDs, the total is the number of UIDs given
|
||||
$total = count($sortResult);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user