Skip to content
Snippets Groups Projects
Commit 424b88b3 authored by efalcy's avatar efalcy
Browse files

hotline #80020 : fix numilog

parent da035fb2
Branches
Tags
3 merge requests!2869Master,!2830Hotline,!2826Hotline#80020 moissonnage numilog remonte des notices en statut deleted
Pipeline #4991 failed with stage
in 43 minutes and 16 seconds
......@@ -37,9 +37,13 @@ class Class_WebService_BibNumerique_Numilog extends Class_WebService_BibNumeriqu
* @return array of harvested ids
*/
protected function _importRessources($ressources) {
$harvestedIds = [];
$this->_albums = [];
foreach ($ressources as $ressource) {
if ($ressource->isDeleted()) {
continue;
}
$harvestedIds[] = $ressource->getId();
if ($ressource->isAlreadyHarvested())
continue;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment