mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-15 05:53:08 +00:00
[DS-527] - Withdrawn items not shown as deleted in OAI
git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@4888 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
@@ -289,7 +289,7 @@ public class Harvest
|
||||
itemInfo.item = Item.find(context, itemInfo.itemID);
|
||||
}
|
||||
|
||||
if ((nonAnon) || (itemInfo.item == null))
|
||||
if ((nonAnon) || (itemInfo.item == null) || (withdrawn && itemInfo.withdrawn))
|
||||
{
|
||||
infoObjects.add(itemInfo);
|
||||
itemCounter++;
|
||||
|
Reference in New Issue
Block a user