1
0
Fork 0

hostedby patching to work with the updated Crossref contents

This commit is contained in:
Claudio Atzori 2024-06-10 15:22:33 +02:00
parent efc1632e16
commit 576efc1857
1 changed files with 6 additions and 4 deletions

View File

@ -27,10 +27,12 @@ object SparkApplyHostedByMapToResult {
val inst: Instance = i.head val inst: Instance = i.head
patchInstance(p, ei, inst) patchInstance(p, ei, inst)
} else if (i.size == 2) { } else {
if (i.map(ii => ii.getCollectedfrom.getValue).contains("UnpayWall")) { val cf = i.map(ii => ii.getCollectedfrom.getValue)
val inst: Instance = i.filter(ii => "Crossref".equals(ii.getCollectedfrom.getValue)).head if (cf.contains("Crossref")) {
patchInstance(p, ei, inst) i.foreach(ii => {
patchInstance(p, ei, ii)
})
} }
} }
} }