mirror of
https://github.com/friendica/friendica
synced 2024-11-11 05:02:54 +00:00
Merge pull request #7608 from annando/issue-7285
Issue 7285: Perform duplicate check for item URI also with AP
This commit is contained in:
commit
75e2b7d297
1 changed files with 2 additions and 2 deletions
|
@ -1398,9 +1398,9 @@ class Item extends BaseObject
|
||||||
* via OStatus (maybe Diasporsa as well)
|
* via OStatus (maybe Diasporsa as well)
|
||||||
*/
|
*/
|
||||||
if (empty($item['network']) || in_array($item['network'], Protocol::FEDERATED)) {
|
if (empty($item['network']) || in_array($item['network'], Protocol::FEDERATED)) {
|
||||||
$condition = ["`uri` = ? AND `uid` = ? AND `network` IN (?, ?, ?)",
|
$condition = ["`uri` = ? AND `uid` = ? AND `network` IN (?, ?, ?, ?)",
|
||||||
trim($item['uri']), $item['uid'],
|
trim($item['uri']), $item['uid'],
|
||||||
Protocol::DIASPORA, Protocol::DFRN, Protocol::OSTATUS];
|
Protocol::ACTIVITYPUB, Protocol::DIASPORA, Protocol::DFRN, Protocol::OSTATUS];
|
||||||
$existing = self::selectFirst(['id', 'network'], $condition);
|
$existing = self::selectFirst(['id', 'network'], $condition);
|
||||||
if (DBA::isResult($existing)) {
|
if (DBA::isResult($existing)) {
|
||||||
// We only log the entries with a different user id than 0. Otherwise we would have too many false positives
|
// We only log the entries with a different user id than 0. Otherwise we would have too many false positives
|
||||||
|
|
Loading…
Reference in a new issue