Skip to content

Commit

Permalink
Fixed Interactions
Browse files Browse the repository at this point in the history
  • Loading branch information
beanbeanjuice committed Jul 2, 2024
1 parent 663dfa3 commit d0a48fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void sendInteraction(final CafeBot cafeBot, final SlashCommandInteraction
Optional<String> additionalMessageOptional = messageMapping.map(OptionMapping::getAsString);

CompletableFuture<Interaction> senderInteractionFuture = interactionsEndpoint.getAndCreateUserInteractionsSent(sender.getId());
CompletableFuture<Interaction> receiverInteractionFuture = interactionsEndpoint.getAndCreateUserInteractionsSent(receiver.getId());
CompletableFuture<Interaction> receiverInteractionFuture = interactionsEndpoint.getAndCreateUserInteractionsReceived(receiver.getId());
CompletableFuture<Optional<String>> interactionPictureFuture = picturesEndpoint.getRandomInteractionPicture(this.type);

senderInteractionFuture
Expand Down

0 comments on commit d0a48fd

Please sign in to comment.