fix(contactsinteraction): Allow vCard download

Sabre calculates a header for the size of a vcard, therefore we have to
implement the size method.

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2024-03-25 16:11:10 +01:00 committed by Christoph Wurst
parent 278aafd4a4
commit 6f73e02be8

View file

@ -96,7 +96,7 @@ class Card implements ICard, IACL {
* @inheritDoc
*/
public function getSize(): int {
throw new NotImplemented();
return strlen($this->contact->getCard());
}
/**