From 8eb7f7b19e4f2cf7d0233c907f40211997b0fad1 Mon Sep 17 00:00:00 2001
From: "J.-S. Caux" <J.S.Caux@uva.nl>
Date: Thu, 16 Nov 2017 13:42:17 +0100
Subject: [PATCH] Make harvest cited-by more robust

---
 journals/views.py | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/journals/views.py b/journals/views.py
index 48b358fcc..d1428b475 100644
--- a/journals/views.py
+++ b/journals/views.py
@@ -921,8 +921,11 @@ def harvest_citedby_links(request, doi_label):
     for link in response_deserialized.iter(prefix + 'forward_link'):
         doi = link.find(prefix + 'journal_cite').find(prefix + 'doi').text
         article_title = link.find(prefix + 'journal_cite').find(prefix + 'article_title').text
-        journal_abbreviation = link.find(prefix + 'journal_cite').find(
-            prefix + 'journal_abbreviation').text
+        try:
+            journal_abbreviation = link.find(prefix + 'journal_cite').find(
+                prefix + 'journal_abbreviation').text
+        except:
+            journal_abbreviation = None
         try:
             volume = link.find(prefix + 'journal_cite').find(prefix + 'volume').text
         except AttributeError:
-- 
GitLab