Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1676,7 +1676,7 @@ default MessageHistory.MessageRetrieveAction getHistoryAfter(@Nonnull Message me
* @param messageId
* The id of the message that will act as a marker.
* @param limit
* The amount of messages to be retrieved after the marker. Minimum: 1, Max: 100.
* The amount of messages to be retrieved before the marker. Minimum: 1, Max: 100.
*
* @throws java.lang.IllegalArgumentException
* <ul>
Expand Down Expand Up @@ -1736,7 +1736,7 @@ default MessageHistory.MessageRetrieveAction getHistoryBefore(@Nonnull String me
* @param messageId
* The id of the message that will act as a marker.
* @param limit
* The amount of messages to be retrieved after the marker. Minimum: 1, Max: 100.
* The amount of messages to be retrieved before the marker. Minimum: 1, Max: 100.
*
* @throws java.lang.IllegalArgumentException
* <ul>
Expand Down Expand Up @@ -1771,7 +1771,7 @@ default MessageHistory.MessageRetrieveAction getHistoryBefore(long messageId, in
* <p><b>Examples:</b>
* <br>Retrieve 100 messages from the middle of history. {@literal >}100 message exist in history and the marker is {@literal >}50 messages
* from the edge of history.
* <br>{@code getHistoryAfter(message, 100)} - This will retrieve 100 messages from history sent before the marker.
* <br>{@code getHistoryBefore(message, 100)} - This will retrieve 100 messages from history sent before the marker.
*
* <p>The following {@link net.dv8tion.jda.api.requests.ErrorResponse ErrorResponses} are possible:
* <ul>
Expand All @@ -1796,7 +1796,7 @@ default MessageHistory.MessageRetrieveAction getHistoryBefore(long messageId, in
* @param message
* The message that will act as a marker.
* @param limit
* The amount of messages to be retrieved after the marker. Minimum: 1, Max: 100.
* The amount of messages to be retrieved before the marker. Minimum: 1, Max: 100.
*
* @throws java.lang.IllegalArgumentException
* <ul>
Expand Down