The value has to be assigned, not compared :-)
This commit is contained in:
parent
e6a054696d
commit
28c54242a5
|
@ -446,7 +446,7 @@ class Notifier
|
||||||
foreach ($r as $rr) {
|
foreach ($r as $rr) {
|
||||||
// Ensure that local contacts are delivered via DFRN
|
// Ensure that local contacts are delivered via DFRN
|
||||||
if (Contact::isLocal($rr['url'])) {
|
if (Contact::isLocal($rr['url'])) {
|
||||||
$contact['network'] == Protocol::DFRN;
|
$contact['network'] = Protocol::DFRN;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($rr['addr']) && ($rr['network'] == Protocol::ACTIVITYPUB) && !DBA::exists('fcontact', ['addr' => $rr['addr']])) {
|
if (!empty($rr['addr']) && ($rr['network'] == Protocol::ACTIVITYPUB) && !DBA::exists('fcontact', ['addr' => $rr['addr']])) {
|
||||||
|
@ -496,7 +496,7 @@ class Notifier
|
||||||
while ($contact = DBA::fetch($delivery_contacts_stmt)) {
|
while ($contact = DBA::fetch($delivery_contacts_stmt)) {
|
||||||
// Ensure that local contacts are delivered via DFRN
|
// Ensure that local contacts are delivered via DFRN
|
||||||
if (Contact::isLocal($contact['url'])) {
|
if (Contact::isLocal($contact['url'])) {
|
||||||
$contact['network'] == Protocol::DFRN;
|
$contact['network'] = Protocol::DFRN;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($contact['addr']) && ($contact['network'] == Protocol::ACTIVITYPUB) && !DBA::exists('fcontact', ['addr' => $contact['addr']])) {
|
if (!empty($contact['addr']) && ($contact['network'] == Protocol::ACTIVITYPUB) && !DBA::exists('fcontact', ['addr' => $contact['addr']])) {
|
||||||
|
|
Loading…
Reference in a new issue