This repository was archived by the owner on Jun 9, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/com/mewna/catnip/entity/interaction Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 14
14
15
15
<lombok .version>1.18.20</lombok .version>
16
16
<rxjava .version>3.1.3</rxjava .version>
17
- <slf4j .version>1.7.33 </slf4j .version>
17
+ <slf4j .version>1.7.35 </slf4j .version>
18
18
<commons .lang.version>3.12.0</commons .lang.version>
19
19
<commons .codec.version>1.15</commons .codec.version>
20
20
<jsr305 .version>3.0.2</jsr305 .version>
25
25
<emoji-java .version>5.1.1</emoji-java .version>
26
26
27
27
<junit .version>5.8.2</junit .version>
28
- <mockito .version>4.2.0 </mockito .version>
28
+ <mockito .version>4.3.1 </mockito .version>
29
29
<logback .version>1.2.10</logback .version>
30
30
<javautil .version>1.34.0</javautil .version>
31
31
</properties >
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public interface InteractionResponse {
45
45
default JsonObject toJson (@ Nonnull final Catnip catnip ) {
46
46
final var builder = JsonObject .builder ();
47
47
builder .value ("type" , type ().key ());
48
- builder .value (data ().toJson (catnip ));
48
+ builder .value ("data" , data ().toJson (catnip ));
49
49
return builder .done ();
50
50
}
51
51
}
You can’t perform that action at this time.
0 commit comments