Skip to content

Commit

Permalink
Fix a problem where getVersionMetaData API operation was not properly…
Browse files Browse the repository at this point in the history
… returning the modifiedOn (#5402)
  • Loading branch information
EricWittmann authored Oct 25, 2024
1 parent 3d9fc63 commit 26880c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public ArtifactVersionMetaDataDto map(ResultSet rs) throws SQLException {
dto.setArtifactType(rs.getString("type"));
dto.setLabels(RegistryContentUtils.deserializeLabels(rs.getString("labels")));
dto.setModifiedBy(rs.getString("modifiedBy"));
dto.setCreatedOn(rs.getTimestamp("modifiedOn").getTime());
dto.setModifiedOn(rs.getTimestamp("modifiedOn").getTime());
return dto;
}

Expand Down

0 comments on commit 26880c0

Please sign in to comment.