Skip to content

Commit 7425006

Browse files
committed
Fix build failure
1 parent c87680d commit 7425006

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,7 @@ dependencies {
7979
implementation fileTree(dir: 'libs', include:'*.jar')
8080

8181
compileOnly 'org.projectlombok:lombok:1.18.8'
82+
annotationProcessor 'org.projectlombok:lombok:1.18.22'
83+
8284
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
8385
}

src/main/java/com/tterrag/k9/commands/CommandMappings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public Mono<?> process(CommandContext ctx) {
205205
.stringFunc(m -> m.formatMessage(v))
206206
.color(color)
207207
.build(channel, ctx.getMessage()))
208-
.flatMap(PaginatedMessage::send);
208+
.flatMap(m -> m.send());
209209
} else {
210210
return ctx.reply("No information found!");
211211
}

0 commit comments

Comments
 (0)