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 backportbot[bot]
parent 51adff2755
commit c7fc7fee60

View file

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