Skip to content

Commit

Permalink
fixed eventaction update bug
Browse files Browse the repository at this point in the history
  • Loading branch information
alex9849 committed Apr 5, 2022
1 parent 8074fee commit 2094d1b
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,6 @@ public static PlayAudioEventAction fromDto(PlayAudioEventActionDto.Request.Creat
}
PlayAudioEventAction eventAction = new PlayAudioEventAction();
BeanUtils.copyProperties(dto, eventAction);
eventAction.setFile(file.getBytes());
eventAction.setFileName(file.getOriginalFilename());
eventAction.setExecutionGroups(new HashSet<>(dto.getExecutionGroups()));
if(file != null) {
eventAction.setFile(file.getBytes());
Expand Down

0 comments on commit 2094d1b

Please sign in to comment.