Explorar el Código

Merge pull request #22050 from owncloud/fix_sync_addressbook

pass parameter in the right order to syncRemoteAddressBook()
tags/v9.0beta1
Thomas Müller hace 8 años
padre
commit
333bb5a227
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      apps/federation/lib/syncfederationaddressbooks.php

+ 1
- 1
apps/federation/lib/syncfederationaddressbooks.php Ver fichero

@@ -46,7 +46,7 @@ class SyncFederationAddressBooks {
'{DAV:}displayname' => $url
];
try {
$newToken = $this->syncService->syncRemoteAddressBook($url, 'system', $sharedSecret, $syncToken, $targetPrincipal, $targetBookId, $targetBookProperties);
$newToken = $this->syncService->syncRemoteAddressBook($url, 'system', $sharedSecret, $syncToken, $targetBookId, $targetPrincipal, $targetBookProperties);
if ($newToken !== $syncToken) {
$this->dbHandler->setServerStatus($url, TrustedServers::STATUS_OK, $newToken);
}

Cargando…
Cancelar
Guardar