From fca2f66bb5c803d8cdf870bf68ce5a439581b970 Mon Sep 17 00:00:00 2001 From: Arnaud Levy <contact@arnaudlevy.com> Date: Fri, 9 Feb 2024 10:25:29 +0100 Subject: [PATCH] Fix #1618 --- app/models/research/hal/author.rb | 3 ++- app/models/university/person/with_research.rb | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/models/research/hal/author.rb b/app/models/research/hal/author.rb index 4db356faa..d9ab7826d 100644 --- a/app/models/research/hal/author.rb +++ b/app/models/research/hal/author.rb @@ -65,7 +65,8 @@ class Research::Hal::Author < ApplicationRecord end def import_research_hal_publications! - publications.hal.clear + # HAL author has only HAL publications + publications.clear # Do not overuse the API if no researcher is concerned return if researchers.none? Importers::Hal.import_publications_for_author(self).each do |publication| diff --git a/app/models/university/person/with_research.rb b/app/models/university/person/with_research.rb index da728421f..d70abcb3f 100644 --- a/app/models/university/person/with_research.rb +++ b/app/models/university/person/with_research.rb @@ -34,7 +34,7 @@ module University::Person::WithResearch end def import_research_hal_publications! - publications.hal.clear + publications.delete(publications.hal) hal_authors.each do |author| # TODO manage same researcher in different universities publications.concat author.import_research_hal_publications! -- GitLab