Kord-Extensions / kord-extensions

Kord extensions framework, providing commands and distinct units of functionality
https://kordex.dev
European Union Public License 1.2
110 stars 27 forks source link

Illegal embed in chunked paginators with few pages #278

Closed sschr15 closed 7 months ago

sschr15 commented 7 months ago

Description

When creating a paginator with chunkedPages greater than 1 and one chunk's worth of pages or fewer, an embed with only a color and a (blank) description is sent to Discord, resulting in an invalid request.

Versions

Using Kordex 1.8.0-SNAPSHOT pulled from a few days ago, and its corresponding Kord build, on Java 21

Code Examples

ephemeralSlashCommand {
    name = "pages"
    description = "Have a paginator problem"
    action {
        editingPaginator {
            chunkedPages = 2
            page {
                title = "Hello"
                description = "This is some text"
            }
        }.send()
    }
}