Api: Handle add push messages in the nextmatch list

This commit is contained in:
nathangray
2020-07-20 13:43:26 -06:00
parent bf44ee753a
commit 69420c19ad
5 changed files with 90 additions and 2 deletions

View File

@@ -183,6 +183,8 @@ var EgwApp = /** @class */ (function () {
EgwApp.prototype.updateList = function (nm, pushData) {
switch (pushData.type) {
case 'add':
nm.refresh(this.uid(pushData), 'add');
break;
case 'unknown':
nm.applyFilters();
break;