Pull request #140: RED-2900: Fixed wrong mapping of comments date
Merge in RED/persistence-service from RED-2900-cd to master * commit '9f4856bab743b7fda3caf67434f93b73357fde93': RED-2900: Fixed wrong mapping of comments date
This commit is contained in:
commit
614528a6be
@ -641,7 +641,7 @@ public class MigrationService {
|
|||||||
.fileId(comment.getFileId())
|
.fileId(comment.getFileId())
|
||||||
.annotationId(comment.getAnnotationId())
|
.annotationId(comment.getAnnotationId())
|
||||||
.user(comment.getUser())
|
.user(comment.getUser())
|
||||||
.date(OffsetDateTime.now().truncatedTo(ChronoUnit.MILLIS))
|
.date(comment.getDate())
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
commentRepository.save(commentEntity);
|
commentRepository.save(commentEntity);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user