Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/org/ecocean/Encounter.java
Original file line number Diff line number Diff line change
Expand Up @@ -3003,7 +3003,7 @@ public ArrayList<MediaAsset> getMedia() {
for (Annotation ann : annotations) {
if (ann == null) continue; // really weird that this happens sometimes
MediaAsset ma = ann.getMediaAsset();
if (ma != null) m.add(ma);
if ((ma != null) && !m.contains(ma)) m.add(ma);
}
return m;
}
Expand Down
Loading