Simplified code

This commit is contained in:
Michael 2020-12-09 05:55:10 +00:00
parent 47844cf1b1
commit 3c18a3eedd
1 changed files with 2 additions and 4 deletions

View File

@ -1939,12 +1939,10 @@ 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)) {
if (DBA::isResult($contact) && Item::isRemoteSelf($contact, $postarray)) {
$notify = PRIORITY_MEDIUM;
}
}
}
$item = Item::insert($postarray, $notify);
$postarray["id"] = $item;