Skip to content

Commit a909b3d

Browse files
committed
bug fix on mergeDataEntries
1 parent e807599 commit a909b3d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/DataBlobs/services/AbstractDataEntries.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,5 +214,7 @@ function mergeDataEntries!(
214214
dde = listDataEntries(dst, dlbl)
215215
uids = (s->s.id).(dde)
216216
filter!(s -> !(s.id in uids), des)
217-
union(((s->mergeDataEntries!(dst, dlbl, src, slbl, s.id)).(des))...)
217+
if 0 < length(des)
218+
union(((s->mergeDataEntries!(dst, dlbl, src, slbl, s.id)).(des))...)
219+
end
218220
end

0 commit comments

Comments
 (0)