Parcourir la source

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>
tags/v29.0.0beta6
Christoph Wurst il y a 2 mois
Parent
révision
b8250affb0
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      apps/contactsinteraction/lib/Card.php

+ 1
- 1
apps/contactsinteraction/lib/Card.php Voir le fichier

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

/**

Chargement…
Annuler
Enregistrer