Merge pull request #13701 from annando/diaspora-events

Fix transmission of events to Diaspora
This commit is contained in:
Hypolite Petovan 2023-12-07 07:08:46 -05:00 committed by GitHub
commit e22e58f5b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -2171,6 +2171,9 @@ class BBCode
// Maybe we should make this newline at every time before a quote.
$text = str_replace(['</a><blockquote>'], ['</a><br><blockquote>'], $text);
// The converter doesn't convert these elements
$text = str_replace(['<div>', '</div>'], ['<p>', '</p>'], $text);
// Now convert HTML to Markdown
$text = HTML::toMarkdown($text);

View File

@ -3403,7 +3403,8 @@ class Diaspora
if ($item['event-id'] > 0) {
$event = self::buildEvent($item['event-id']);
if (count($event)) {
$message['event'] = $event;
// Deactivated, since Diaspora seems to have problems with the processing.
// $message['event'] = $event;
if (
!empty($event['location']['address']) &&