Merge pull request #7588 from annando/reduce-load
Follow up to #7582: Only update the contact when needed
This commit is contained in:
commit
3ee26ecd24
1 changed files with 1 additions and 1 deletions
|
@ -904,7 +904,7 @@ class Contact extends BaseObject
|
||||||
public static function unmarkForArchival(array $contact)
|
public static function unmarkForArchival(array $contact)
|
||||||
{
|
{
|
||||||
// Always unarchive the relay contact entry
|
// Always unarchive the relay contact entry
|
||||||
if (!empty($contact['batch'])) {
|
if (!empty($contact['batch']) && !empty($contact['term-date']) && ($contact['term-date'] > DBA::NULL_DATETIME)) {
|
||||||
$fields = ['term-date' => DBA::NULL_DATETIME, 'archive' => false];
|
$fields = ['term-date' => DBA::NULL_DATETIME, 'archive' => false];
|
||||||
$condition = ['batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY];
|
$condition = ['batch' => $contact['batch'], 'contact-type' => self::TYPE_RELAY];
|
||||||
DBA::update('contact', $fields, $condition);
|
DBA::update('contact', $fields, $condition);
|
||||||
|
|
Loading…
Reference in a new issue