mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
$.proxy is deprecated
$.trim is deprecated
This commit is contained in:
parent
ae1b7610fd
commit
bbd9f49dcd
39 changed files with 153 additions and 173 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { pString, pInt, trim } from 'Common/Utils';
|
||||
import { pString, pInt } from 'Common/Utils';
|
||||
|
||||
import {
|
||||
CONTACTS_SYNC_AJAX_TIMEOUT,
|
||||
|
|
@ -855,7 +855,7 @@ class RemoteUserAjax extends AbstractAjaxRemote {
|
|||
contactSave(fCallback, sRequestUid, sUid, aProperties) {
|
||||
this.defaultRequest(fCallback, 'ContactSave', {
|
||||
'RequestUid': sRequestUid,
|
||||
'Uid': trim(sUid),
|
||||
'Uid': sUid.trim(),
|
||||
'Properties': aProperties
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue