Ensure author-link key has a value in Worker\Notifier
- Address https://github.com/friendica/friendica/issues/8875#issuecomment-691942457
This commit is contained in:
parent
0f1bab6fea
commit
fb131027fa
|
@ -179,7 +179,7 @@ class Notifier
|
||||||
|
|
||||||
// Only deliver threaded replies (comment to a comment) to Diaspora
|
// Only deliver threaded replies (comment to a comment) to Diaspora
|
||||||
// when the original comment author does support the Diaspora protocol.
|
// when the original comment author does support the Diaspora protocol.
|
||||||
if ($target_item['parent-uri'] != $target_item['thr-parent']) {
|
if ($thr_parent['author-link'] && $target_item['parent-uri'] != $target_item['thr-parent']) {
|
||||||
$diaspora_delivery = Diaspora::isSupportedByContactUrl($thr_parent['author-link']);
|
$diaspora_delivery = Diaspora::isSupportedByContactUrl($thr_parent['author-link']);
|
||||||
Logger::info('Threaded comment', ['diaspora_delivery' => (int)$diaspora_delivery]);
|
Logger::info('Threaded comment', ['diaspora_delivery' => (int)$diaspora_delivery]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue