We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c87680d commit 7425006Copy full SHA for 7425006
build.gradle
@@ -79,5 +79,7 @@ dependencies {
79
implementation fileTree(dir: 'libs', include:'*.jar')
80
81
compileOnly 'org.projectlombok:lombok:1.18.8'
82
+ annotationProcessor 'org.projectlombok:lombok:1.18.22'
83
+
84
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
85
}
src/main/java/com/tterrag/k9/commands/CommandMappings.java
@@ -205,7 +205,7 @@ public Mono<?> process(CommandContext ctx) {
205
.stringFunc(m -> m.formatMessage(v))
206
.color(color)
207
.build(channel, ctx.getMessage()))
208
- .flatMap(PaginatedMessage::send);
+ .flatMap(m -> m.send());
209
} else {
210
return ctx.reply("No information found!");
211
0 commit comments