forked from friendica/friendica-addons
Simplified code
This commit is contained in:
parent
47844cf1b1
commit
3c18a3eedd
|
@ -1939,10 +1939,8 @@ function twitter_fetchhometimeline(App $a, $uid)
|
|||
|
||||
if (empty($postarray['thr-parent'])) {
|
||||
$contact = DBA::selectFirst('contact', [], ['id' => $postarray['contact-id'], 'self' => false]);
|
||||
if (DBA::isResult($contact)) {
|
||||
if (Item::isRemoteSelf($contact, $postarray)) {
|
||||
$notify = PRIORITY_MEDIUM;
|
||||
}
|
||||
if (DBA::isResult($contact) && Item::isRemoteSelf($contact, $postarray)) {
|
||||
$notify = PRIORITY_MEDIUM;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue