mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-24 23:08:08 +08:00
Kolab error: $id is string, should be int
This commit is contained in:
parent
4145c87e55
commit
e6bdb37ca1
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ class KolabAddressBook implements \RainLoop\Providers\AddressBook\AddressBookInt
|
|||
return false;
|
||||
}
|
||||
|
||||
$id = $oContact->id;
|
||||
$id = \intval($oContact->id);
|
||||
$sUID = '';
|
||||
|
||||
$oVCard = $oContact->vCard;
|
||||
|
|
Loading…
Reference in a new issue