Skip to content

Commit

Permalink
Fix BooktalkService.java
Browse files Browse the repository at this point in the history
  • Loading branch information
dong2ast authored Jul 11, 2023
1 parent 838696f commit a541469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/sophy/sophy/service/BooktalkService.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private Place getPlaceById(Long placeId) {
private Booktalk getBooktalkById(Long booktalkId) {
return booktalkRepository.findById(booktalkId)
.orElseThrow(() -> new NotFoundException(ErrorStatus.NOT_FOUND_BOOKTALK_EXCEPTION, ErrorStatus.NOT_FOUND_BOOKTALK_EXCEPTION.getMessage()));

}
@Transactional
public List<BooktalkResponseDto> getBooktalksByCity(CityRequestDto cityRequestDto) {
City city = cityRequestDto.getCity();
Expand Down

0 comments on commit a541469

Please sign in to comment.