Fix transmission of events to Diaspora
This commit is contained in:
parent
0d6974a6d2
commit
4f37f68bd7
|
@ -2171,6 +2171,9 @@ class BBCode
|
||||||
// Maybe we should make this newline at every time before a quote.
|
// Maybe we should make this newline at every time before a quote.
|
||||||
$text = str_replace(['</a><blockquote>'], ['</a><br><blockquote>'], $text);
|
$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
|
// Now convert HTML to Markdown
|
||||||
$text = HTML::toMarkdown($text);
|
$text = HTML::toMarkdown($text);
|
||||||
|
|
||||||
|
|
|
@ -3310,7 +3310,7 @@ class Diaspora
|
||||||
|
|
||||||
$result = DI::cache()->get($cachekey);
|
$result = DI::cache()->get($cachekey);
|
||||||
if (!is_null($result)) {
|
if (!is_null($result)) {
|
||||||
return $result;
|
// return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
$myaddr = self::myHandle($owner);
|
$myaddr = self::myHandle($owner);
|
||||||
|
@ -3403,7 +3403,8 @@ class Diaspora
|
||||||
if ($item['event-id'] > 0) {
|
if ($item['event-id'] > 0) {
|
||||||
$event = self::buildEvent($item['event-id']);
|
$event = self::buildEvent($item['event-id']);
|
||||||
if (count($event)) {
|
if (count($event)) {
|
||||||
$message['event'] = $event;
|
// Deactivated, since Diaspora seems to have problems with the processing.
|
||||||
|
// $message['event'] = $event;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
!empty($event['location']['address']) &&
|
!empty($event['location']['address']) &&
|
||||||
|
|
Loading…
Reference in New Issue
Block a user