Skip to content
Snippets Groups Projects
Commit 2ab1cdb0 authored by Aaron Bauman's avatar Aaron Bauman
Browse files

Issue #3458989 by CRZDEV: Error: Call to a member function size() on null en...

Issue #3458989 by CRZDEV: Error: Call to a member function size() on null en Drupal\salesforce_pull\QueueHandler->getUpdatedRecordsForMapping()
parent d6636806
No related branches found
Tags 5.0.6
No related merge requests found
Pipeline #276032 failed
......@@ -190,8 +190,10 @@ class QueueHandler {
$results = $this->doSfoQuery($mapping, [], $start, $stop);
if ($results) {
$this->enqueueAllResults($mapping, $results, $force_pull);
return $results->size();
}
return $results->size();
// Query failed & no results size can be obtained.
return FALSE;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment