Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Gorzala committed Jan 14, 2024
1 parent 6cf9ddf commit 473a8f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/main/java/net/dancier/dancer/chat/DancerController.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import lombok.RequiredArgsConstructor;
import net.dancier.dancer.chat.dto.DancerDto;
import net.dancier.dancer.chat.dto.DancerIdsDto;
import net.dancier.dancer.contact.ContactController;
import net.dancier.dancer.core.DancerService;
import net.dancier.dancer.security.AuthenticatedUser;
import net.dancier.dancer.security.CurrentUser;
Expand All @@ -22,7 +21,7 @@
@RequestMapping("/dancers")
@RequiredArgsConstructor
public class DancerController {
private final static Logger log = LoggerFactory.getLogger(ContactController.class);
private final static Logger log = LoggerFactory.getLogger(DancerController.class);

private final DancerService dancerService;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ void send(ContactDto contactDto, AuthenticatedUser authenticatedUserOfSender) {
"Mail über das Kontakt formular",
MailCreationService.CONTACT_FORMULAR,
Map.of(
"sender", contactDto.getSender(),
"sender", senderMailAddress,
"message", contactDto.getMessage())
);

Expand Down

0 comments on commit 473a8f4

Please sign in to comment.