Drop Remote.request() aAbortActions parameter

This commit is contained in:
the-djmaze 2022-09-02 09:56:31 +02:00
parent bae103257c
commit afd65c809d
6 changed files with 15 additions and 31 deletions

View file

@ -403,7 +403,7 @@ export class ContactsPopupView extends AbstractViewPopup {
}
ContactUserStore.loading(true);
Remote.request('Contacts',
Remote.abort('Contacts').request('Contacts',
(iError, data) => {
let count = 0,
list = [];
@ -429,10 +429,7 @@ export class ContactsPopupView extends AbstractViewPopup {
Offset: offset,
Limit: CONTACTS_PER_PAGE,
Search: this.search()
},
null,
'',
['Contacts']
}
);
}