Skip to content

Commit

Permalink
Quick fix: when failing to send files, platform will retry to send th…
Browse files Browse the repository at this point in the history
…em. see #49
  • Loading branch information
taidopurason committed Dec 4, 2020
1 parent 2bfb033 commit 038467d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,7 @@ public MessengerResponse sendFile(@NonNull StateContext context, @NonNull String
new Recipient(recipientId),
new Message(new Attachment(attachmentType, new AttachmentIdPayload(attachmentId))));
Log.debug("SENDING FILE TO: {0}", recipientId);
return reply(new Reply(this, context, messaging)
);
return reply(new MessageReply(this, context, messaging));
}

/**
Expand Down

0 comments on commit 038467d

Please sign in to comment.