Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
  • Loading branch information
ChristophWurst authored and backportbot[bot] committed May 22, 2024
commit c7fc7fee60fdc3352a8226466629f0698bc32ba1
2 changes: 1 addition & 1 deletion apps/contactsinteraction/lib/Card.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function getETag(): ?string {
* @inheritDoc
*/
public function getSize(): int {
throw new NotImplemented();
return strlen($this->contact->getCard());
}

/**
Expand Down